結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-05 21:21:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 43 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-04-16 08:36:43
合計ジャッジ時間 1,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,636 KB
testcase_01 AC 39 ms
52,496 KB
testcase_02 AC 40 ms
52,376 KB
testcase_03 AC 41 ms
52,340 KB
testcase_04 AC 40 ms
52,128 KB
testcase_05 AC 40 ms
52,824 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 38 ms
51,836 KB
testcase_08 AC 40 ms
52,540 KB
testcase_09 AC 38 ms
52,076 KB
testcase_10 AC 39 ms
53,132 KB
testcase_11 AC 39 ms
52,540 KB
testcase_12 AC 40 ms
53,032 KB
testcase_13 AC 40 ms
53,432 KB
testcase_14 AC 38 ms
52,128 KB
testcase_15 AC 40 ms
52,172 KB
testcase_16 AC 39 ms
52,112 KB
testcase_17 AC 40 ms
52,280 KB
testcase_18 AC 39 ms
52,124 KB
testcase_19 AC 38 ms
53,104 KB
testcase_20 AC 40 ms
51,552 KB
testcase_21 AC 40 ms
53,356 KB
testcase_22 AC 40 ms
52,080 KB
testcase_23 AC 39 ms
53,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
n = max(n,0)
print(n//100)
0