結果
問題 |
No.863 計算量
|
ユーザー |
![]() |
提出日時 | 2019-08-20 20:48:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 209 bytes |
コンパイル時間 | 589 ms |
コンパイル使用メモリ | 69,040 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 16:07:00 |
合計ジャッジ時間 | 1,091 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { int a, b; cin >> a >> b; if (b >= 100LL * a) cout << 2 << endl; else cout << 1 << endl; return 0; }