結果

問題 No.128 お年玉(1)
ユーザー ABKZABKZ
提出日時 2021-06-16 20:35:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 67 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-06-10 01:15:45
合計ジャッジ時間 2,202 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,156 KB
testcase_01 AC 34 ms
52,304 KB
testcase_02 AC 35 ms
53,224 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 34 ms
52,304 KB
testcase_05 AC 35 ms
52,060 KB
testcase_06 AC 35 ms
52,312 KB
testcase_07 AC 35 ms
53,564 KB
testcase_08 AC 39 ms
52,564 KB
testcase_09 AC 34 ms
52,976 KB
testcase_10 AC 34 ms
52,048 KB
testcase_11 AC 35 ms
51,572 KB
testcase_12 AC 35 ms
52,328 KB
testcase_13 AC 35 ms
52,296 KB
testcase_14 AC 36 ms
51,848 KB
testcase_15 AC 35 ms
53,292 KB
testcase_16 AC 35 ms
51,768 KB
testcase_17 AC 37 ms
53,252 KB
testcase_18 AC 34 ms
52,804 KB
testcase_19 AC 34 ms
53,004 KB
testcase_20 AC 34 ms
52,956 KB
testcase_21 AC 34 ms
52,272 KB
testcase_22 AC 35 ms
53,192 KB
testcase_23 AC 42 ms
52,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())

print(((N // M) // 1000) * 1000)
0