結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
m1025o1184t
|
| 提出日時 | 2019-10-10 22:31:33 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 257 bytes |
| 記録 | |
| コンパイル時間 | 1,462 ms |
| コンパイル使用メモリ | 165,916 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-22 01:18:29 |
| 合計ジャッジ時間 | 2,268 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;
typedef long long ll;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int a, b;
cin >> a >> b;
if (b / a >= 1600) cout << 2 << endl;
else cout << 1 << endl;
}
m1025o1184t