結果

問題 No.863 計算量
ユーザー nep_pudding3nep_pudding3
提出日時 2019-08-16 21:27:47
言語 PyPy3
(7.3.8)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 100 bytes
コンパイル時間 252 ms
使用メモリ 75,840 KB
最終ジャッジ日時 2022-11-22 03:35:44
合計ジャッジ時間 2,586 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 74 ms
75,656 KB
testcase_01 AC 75 ms
75,540 KB
testcase_02 AC 74 ms
75,736 KB
testcase_03 AC 74 ms
75,824 KB
testcase_04 AC 75 ms
75,492 KB
testcase_05 AC 75 ms
75,744 KB
testcase_06 AC 75 ms
75,696 KB
testcase_07 AC 76 ms
75,744 KB
testcase_08 AC 75 ms
75,760 KB
testcase_09 AC 77 ms
75,840 KB
testcase_10 AC 79 ms
75,788 KB
testcase_11 AC 74 ms
75,432 KB
testcase_12 AC 75 ms
75,744 KB
testcase_13 AC 75 ms
75,740 KB
testcase_14 AC 75 ms
75,732 KB
testcase_15 AC 77 ms
75,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = int(input())
B = int(input())
if (abs(B-A*40) < abs(B-A*40*40)):
    print(1)
else:
    print(2)
0