結果

問題 No.836 じょうよ
ユーザー dangodango
提出日時 2023-06-16 20:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 92 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-06-24 12:08:40
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
75,792 KB
testcase_01 AC 37 ms
52,104 KB
testcase_02 AC 37 ms
52,788 KB
testcase_03 AC 37 ms
53,184 KB
testcase_04 AC 36 ms
52,564 KB
testcase_05 AC 37 ms
52,820 KB
testcase_06 AC 39 ms
52,204 KB
testcase_07 AC 42 ms
52,532 KB
testcase_08 AC 37 ms
52,620 KB
testcase_09 AC 38 ms
51,832 KB
testcase_10 AC 38 ms
52,072 KB
testcase_11 AC 49 ms
64,240 KB
testcase_12 AC 50 ms
63,252 KB
testcase_13 AC 49 ms
63,912 KB
testcase_14 AC 49 ms
62,952 KB
testcase_15 AC 49 ms
64,464 KB
testcase_16 AC 62 ms
75,928 KB
testcase_17 AC 57 ms
74,192 KB
testcase_18 AC 50 ms
63,132 KB
testcase_19 AC 51 ms
64,228 KB
testcase_20 AC 53 ms
70,544 KB
testcase_21 AC 49 ms
62,900 KB
testcase_22 AC 52 ms
68,800 KB
testcase_23 AC 59 ms
75,812 KB
testcase_24 AC 48 ms
62,960 KB
testcase_25 AC 51 ms
66,756 KB
testcase_26 AC 48 ms
61,528 KB
testcase_27 AC 48 ms
61,784 KB
testcase_28 AC 49 ms
63,328 KB
testcase_29 AC 48 ms
62,804 KB
testcase_30 AC 47 ms
61,860 KB
testcase_31 AC 48 ms
62,956 KB
testcase_32 AC 48 ms
63,412 KB
testcase_33 AC 47 ms
62,180 KB
testcase_34 AC 47 ms
62,688 KB
testcase_35 AC 48 ms
63,036 KB
testcase_36 AC 51 ms
69,904 KB
testcase_37 AC 54 ms
69,084 KB
testcase_38 AC 54 ms
72,516 KB
testcase_39 AC 53 ms
70,672 KB
testcase_40 AC 62 ms
75,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, C = map(int,input().split())
for i in range(C): print((B - i) // C - (A - 1 - i) // C)
0