ログイン
新規登録
AtsuoCoder Petrozavodsk Contest 001
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 30b93c3c-4a9e-47a5-863c-2a8d38a9b2a1
コード
#include <bits/stdc++.h> using namespace std; int main() { int A; int B; int C; int T; cin >> A >> B >> C >> T; if (A<=B){ if (B *T <= C){ cout << 0 << endl; } else{ cout << 1 << endl; } } else{ if(A*T <=C){ cout << 0 << endl; } else{ cout << 1 << endl; } } }
結果
問題
点数
言語
結果
実行時間
メモリ
B - Dash
0
C++
WA
2 ms
3852 KiB