結果

問題 No.863 計算量
ユーザー NagisaNagisa
提出日時 2019-08-16 21:29:22
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 81 ms / 1,000 ms
コード長 64 bytes
コンパイル時間 256 ms
使用メモリ 75,924 KB
最終ジャッジ日時 2022-11-22 03:38:50
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 78 ms
75,648 KB
testcase_01 AC 78 ms
75,804 KB
testcase_02 AC 80 ms
75,448 KB
testcase_03 AC 80 ms
75,836 KB
testcase_04 AC 80 ms
75,724 KB
testcase_05 AC 78 ms
75,924 KB
testcase_06 AC 79 ms
75,788 KB
testcase_07 AC 77 ms
75,528 KB
testcase_08 AC 79 ms
75,772 KB
testcase_09 AC 79 ms
75,516 KB
testcase_10 AC 78 ms
75,740 KB
testcase_11 AC 81 ms
75,736 KB
testcase_12 AC 78 ms
75,552 KB
testcase_13 AC 81 ms
75,828 KB
testcase_14 AC 81 ms
75,428 KB
testcase_15 AC 81 ms
75,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = int(input())
print(1 if B/A < 1600 else 2)
0