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