結果
問題 | No.863 計算量 |
ユーザー |
|
提出日時 | 2019-08-16 21:24:09 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 297 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 166,640 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 14:55:02 |
合計ジャッジ時間 | 2,128 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#define rep(i, n) for(int i = 0; i < (int)(n); i++) typedef long long ll; #include <bits/stdc++.h> using namespace std; int main() { ll a,b; std::cin >> a; std::cin >> b; if(b<= (a+1)*40){ std::cout << 1 << std::endl; }else{ std::cout << 2 << std::endl; } }