結果

問題 No.836 じょうよ
ユーザー nomemseanomemsea
提出日時 2019-06-14 21:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 206 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-09 00:30:37
合計ジャッジ時間 4,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
76,800 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 43 ms
51,712 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 43 ms
51,840 KB
testcase_06 AC 43 ms
51,584 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 43 ms
51,840 KB
testcase_11 AC 60 ms
63,744 KB
testcase_12 AC 61 ms
64,000 KB
testcase_13 AC 60 ms
63,360 KB
testcase_14 AC 56 ms
61,312 KB
testcase_15 AC 59 ms
63,744 KB
testcase_16 AC 80 ms
76,928 KB
testcase_17 AC 77 ms
76,800 KB
testcase_18 AC 59 ms
63,104 KB
testcase_19 AC 62 ms
64,896 KB
testcase_20 AC 67 ms
70,016 KB
testcase_21 AC 55 ms
61,824 KB
testcase_22 AC 62 ms
68,352 KB
testcase_23 AC 74 ms
77,312 KB
testcase_24 AC 57 ms
62,592 KB
testcase_25 AC 62 ms
66,432 KB
testcase_26 AC 55 ms
61,568 KB
testcase_27 AC 56 ms
61,440 KB
testcase_28 AC 58 ms
63,104 KB
testcase_29 AC 56 ms
61,696 KB
testcase_30 AC 57 ms
61,312 KB
testcase_31 AC 59 ms
63,872 KB
testcase_32 AC 57 ms
62,592 KB
testcase_33 AC 55 ms
61,312 KB
testcase_34 AC 56 ms
62,720 KB
testcase_35 AC 59 ms
63,488 KB
testcase_36 AC 68 ms
70,912 KB
testcase_37 AC 67 ms
70,016 KB
testcase_38 AC 70 ms
74,112 KB
testcase_39 AC 66 ms
71,936 KB
testcase_40 AC 78 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,n = map(int,input().split())
l -=1
ll = l % n
rr = r % n
f = [l//n]*(n)
g = [r//n]*(n)
for i in range(1,ll+1):
    f[i] += 1
for i in range(1,rr+1):
    g[i] +=1

for i in range(n):
    print(g[i]-f[i])
0