結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー kurehakureha
提出日時 2024-04-19 13:48:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 53 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-04-19 13:48:46
合計ジャッジ時間 1,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,292 KB
testcase_01 AC 31 ms
51,800 KB
testcase_02 AC 32 ms
52,828 KB
testcase_03 AC 32 ms
52,280 KB
testcase_04 AC 31 ms
51,896 KB
testcase_05 AC 32 ms
53,340 KB
testcase_06 AC 31 ms
53,176 KB
testcase_07 AC 32 ms
52,304 KB
testcase_08 AC 32 ms
53,236 KB
testcase_09 AC 32 ms
52,556 KB
testcase_10 AC 32 ms
51,824 KB
testcase_11 AC 32 ms
52,632 KB
testcase_12 AC 32 ms
52,028 KB
testcase_13 AC 31 ms
52,984 KB
testcase_14 AC 31 ms
52,720 KB
testcase_15 AC 33 ms
53,692 KB
testcase_16 AC 31 ms
52,884 KB
testcase_17 AC 34 ms
52,300 KB
testcase_18 AC 31 ms
52,792 KB
testcase_19 AC 32 ms
52,184 KB
testcase_20 AC 31 ms
52,864 KB
testcase_21 AC 31 ms
52,616 KB
testcase_22 AC 31 ms
53,868 KB
testcase_23 AC 32 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())
if a<100:print(0)
else:print(a//100)
0