結果
問題 |
No.863 計算量
|
ユーザー |
|
提出日時 | 2021-10-02 14:23:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 287 bytes |
コンパイル時間 | 1,936 ms |
コンパイル使用メモリ | 184,972 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 07:59:49 |
合計ジャッジ時間 | 2,263 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #define INF 1000000000; #define INF_B 1000000000000000000; #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main(){ ll A, B; cin >> A >> B; int ans; A > B/100 ? ans=1 : ans=2; cout << ans << endl; }