結果

問題 No.836 じょうよ
ユーザー mlihua09mlihua09
提出日時 2020-09-13 02:35:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 1,000 ms
コード長 104 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 77,352 KB
最終ジャッジ日時 2023-08-30 20:03:14
合計ジャッジ時間 6,418 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
77,308 KB
testcase_01 AC 68 ms
71,296 KB
testcase_02 AC 67 ms
71,372 KB
testcase_03 AC 71 ms
71,344 KB
testcase_04 AC 66 ms
71,264 KB
testcase_05 AC 67 ms
71,448 KB
testcase_06 AC 66 ms
71,484 KB
testcase_07 AC 66 ms
71,516 KB
testcase_08 AC 67 ms
71,272 KB
testcase_09 AC 67 ms
71,636 KB
testcase_10 AC 67 ms
71,140 KB
testcase_11 AC 77 ms
76,344 KB
testcase_12 AC 78 ms
76,596 KB
testcase_13 AC 76 ms
76,900 KB
testcase_14 AC 77 ms
76,840 KB
testcase_15 AC 77 ms
76,352 KB
testcase_16 AC 85 ms
77,144 KB
testcase_17 AC 85 ms
76,928 KB
testcase_18 AC 76 ms
76,532 KB
testcase_19 AC 78 ms
76,356 KB
testcase_20 AC 81 ms
76,840 KB
testcase_21 AC 76 ms
76,344 KB
testcase_22 AC 79 ms
76,872 KB
testcase_23 AC 83 ms
77,352 KB
testcase_24 AC 77 ms
76,744 KB
testcase_25 AC 78 ms
76,784 KB
testcase_26 AC 76 ms
76,784 KB
testcase_27 AC 78 ms
76,736 KB
testcase_28 AC 78 ms
76,624 KB
testcase_29 AC 78 ms
76,640 KB
testcase_30 AC 78 ms
76,888 KB
testcase_31 AC 78 ms
76,812 KB
testcase_32 AC 76 ms
76,532 KB
testcase_33 AC 76 ms
76,808 KB
testcase_34 AC 77 ms
76,856 KB
testcase_35 AC 77 ms
76,896 KB
testcase_36 AC 79 ms
76,344 KB
testcase_37 AC 79 ms
76,832 KB
testcase_38 AC 82 ms
76,624 KB
testcase_39 AC 79 ms
76,396 KB
testcase_40 AC 84 ms
77,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, n = map(int, input().split())

for i in range(n):
    
    print((r - i) // n - (l - 1 - i) // n)
0