結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
mine691
|
| 提出日時 | 2019-08-16 21:32:26 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 292 bytes |
| 記録 | |
| コンパイル時間 | 1,560 ms |
| コンパイル使用メモリ | 182,964 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-10 21:25:56 |
| 合計ジャッジ時間 | 2,042 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int mod = 1e9 + 7;
const int inf = (1 << 30) - 1;
const ll infll = (1LL << 61) - 1;
ll A, B;
int main()
{
cin >> A >> B;
if (B < 400 * A + 400)
cout << 1 << endl;
else
cout << 2 << endl;
}
mine691