結果

問題 No.863 計算量
ユーザー tanon710tanon710
提出日時 2020-05-05 00:03:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 75 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 71,436 KB
最終ジャッジ日時 2023-09-07 11:27:30
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,156 KB
testcase_01 AC 75 ms
71,436 KB
testcase_02 AC 77 ms
71,320 KB
testcase_03 AC 77 ms
71,428 KB
testcase_04 AC 76 ms
70,996 KB
testcase_05 AC 77 ms
71,320 KB
testcase_06 AC 75 ms
71,428 KB
testcase_07 AC 75 ms
71,144 KB
testcase_08 AC 75 ms
71,108 KB
testcase_09 AC 75 ms
71,112 KB
testcase_10 AC 76 ms
71,224 KB
testcase_11 AC 75 ms
71,252 KB
testcase_12 AC 74 ms
71,368 KB
testcase_13 AC 78 ms
71,256 KB
testcase_14 AC 77 ms
71,320 KB
testcase_15 AC 77 ms
71,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=int(input())
b=int(input())
if b/a>=1600:
    print(2)
else:
    print(1)
0