結果
| 問題 |
No.863 計算量
|
| コンテスト | |
| ユーザー |
d_sei
|
| 提出日時 | 2019-09-05 11:49:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 278 bytes |
| コンパイル時間 | 897 ms |
| コンパイル使用メモリ | 81,824 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2025-01-03 05:52:59 |
| 合計ジャッジ時間 | 3,058 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
#include<queue>
using namespace std;
typedef long long int lont;
int main() {
lont A, B;
cin >> A >> B;
if (B / A < 100) {
cout << 1 << endl;
}
else {
cout << 2 << endl;
}
}
d_sei