結果

問題 No.863 計算量
ユーザー e869120
提出日時 2019-08-16 14:23:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 265 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 64,364 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 05:42:11
合計ジャッジ時間 1,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
using namespace std;

int main() {
	long long A, B;
	cin >> A >> B;
	assert(1LL <= A && A <= 25000000LL);
	assert(1LL <= B && B <= 1000000000LL);
	if (B / A >= 1600) cout << "2" << endl;
	else cout << "1" << endl;
	return 0;
}
0