結果

問題 No.1672 404 Not Found
ユーザー t_a_ke_t_a_ke_
提出日時 2022-01-10 01:36:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 90 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 53,520 KB
最終ジャッジ日時 2024-11-14 10:39:16
合計ジャッジ時間 1,906 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,140 KB
testcase_01 AC 37 ms
52,072 KB
testcase_02 AC 35 ms
53,040 KB
testcase_03 AC 38 ms
52,976 KB
testcase_04 AC 35 ms
51,944 KB
testcase_05 AC 35 ms
53,288 KB
testcase_06 AC 36 ms
53,220 KB
testcase_07 AC 36 ms
53,520 KB
testcase_08 AC 36 ms
52,760 KB
testcase_09 AC 37 ms
52,024 KB
testcase_10 AC 35 ms
52,180 KB
testcase_11 AC 35 ms
53,104 KB
testcase_12 AC 36 ms
52,592 KB
testcase_13 AC 35 ms
52,752 KB
testcase_14 AC 36 ms
52,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = int(input())
if s // 100 == 4 or s // 100 == 5:
    print('Yes')
else:
    print('No')
0