結果

問題 No.836 じょうよ
ユーザー kohei2019kohei2019
提出日時 2022-04-21 23:34:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 87,232 KB
実行使用メモリ 79,944 KB
最終ジャッジ日時 2023-09-05 06:01:00
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
78,984 KB
testcase_01 AC 74 ms
71,492 KB
testcase_02 AC 74 ms
71,420 KB
testcase_03 AC 74 ms
71,436 KB
testcase_04 AC 76 ms
71,420 KB
testcase_05 AC 76 ms
71,572 KB
testcase_06 AC 75 ms
71,264 KB
testcase_07 AC 76 ms
71,416 KB
testcase_08 AC 74 ms
71,440 KB
testcase_09 AC 75 ms
71,216 KB
testcase_10 AC 73 ms
71,336 KB
testcase_11 AC 87 ms
76,596 KB
testcase_12 AC 88 ms
76,636 KB
testcase_13 AC 89 ms
76,316 KB
testcase_14 AC 87 ms
76,392 KB
testcase_15 AC 85 ms
76,632 KB
testcase_16 AC 98 ms
79,052 KB
testcase_17 AC 98 ms
78,884 KB
testcase_18 AC 85 ms
76,320 KB
testcase_19 AC 89 ms
76,816 KB
testcase_20 AC 94 ms
77,804 KB
testcase_21 AC 85 ms
76,404 KB
testcase_22 AC 90 ms
77,512 KB
testcase_23 AC 98 ms
79,460 KB
testcase_24 AC 88 ms
76,556 KB
testcase_25 AC 91 ms
77,516 KB
testcase_26 AC 85 ms
76,388 KB
testcase_27 AC 87 ms
76,740 KB
testcase_28 AC 89 ms
76,544 KB
testcase_29 AC 86 ms
76,480 KB
testcase_30 AC 87 ms
76,812 KB
testcase_31 AC 88 ms
76,712 KB
testcase_32 AC 86 ms
76,712 KB
testcase_33 AC 86 ms
76,724 KB
testcase_34 AC 88 ms
76,532 KB
testcase_35 AC 88 ms
76,476 KB
testcase_36 AC 92 ms
77,904 KB
testcase_37 AC 93 ms
78,036 KB
testcase_38 AC 94 ms
78,488 KB
testcase_39 AC 91 ms
78,224 KB
testcase_40 AC 101 ms
79,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,n = map(int,input().split())
lsn = [0]*(n)

for i in range(n):
    r0 = r-i
    l0 = l-i-1
    lsn[i] += r0//n
    lsn[i] -= l0//n

print(*lsn,sep='\n')
0