ログイン
新規登録
AtsuoCoder Petrozavodsk Contest 001
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 3cb84904-0c56-4850-9994-48b4a97ff70d
コード
#include <bits/stdc++.h> using namespace std;int main() { int A,B,C,T; cin >> A >> B >> C >> T; if(1/A < C/T){ cout << 1 << endl; } else if(1/B < C/T){ cout << 1 << endl; } else{ cout < 0 << endl; } }
結果
問題
点数
言語
結果
実行時間
メモリ
B - Dash
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp: In function 'int main()': Main.cpp:12:18: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator<<' 12 | cout < 0 << endl; | ~~^~~~~~~