結果

問題 No.836 じょうよ
ユーザー stngstng
提出日時 2022-07-10 18:42:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-11 08:40:49
合計ジャッジ時間 4,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 35 ms
51,456 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 WA -
testcase_08 AC 36 ms
51,712 KB
testcase_09 WA -
testcase_10 AC 39 ms
51,584 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 71 ms
76,928 KB
testcase_17 AC 78 ms
76,672 KB
testcase_18 WA -
testcase_19 AC 54 ms
64,512 KB
testcase_20 WA -
testcase_21 AC 53 ms
61,696 KB
testcase_22 AC 57 ms
67,840 KB
testcase_23 AC 66 ms
76,544 KB
testcase_24 AC 50 ms
62,336 KB
testcase_25 AC 55 ms
66,560 KB
testcase_26 AC 48 ms
61,568 KB
testcase_27 AC 49 ms
61,568 KB
testcase_28 AC 51 ms
62,464 KB
testcase_29 AC 49 ms
61,824 KB
testcase_30 AC 49 ms
61,952 KB
testcase_31 AC 52 ms
63,104 KB
testcase_32 AC 53 ms
62,848 KB
testcase_33 AC 51 ms
61,696 KB
testcase_34 AC 51 ms
62,848 KB
testcase_35 AC 53 ms
62,848 KB
testcase_36 AC 56 ms
68,992 KB
testcase_37 AC 56 ms
68,736 KB
testcase_38 AC 61 ms
72,320 KB
testcase_39 AC 60 ms
70,528 KB
testcase_40 AC 69 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

srt = l%n
end = r%n

li = [0]*n

if (r-l) // n >= 1:
    now = ((srt//n)+1)*n
    #print(r-now,srt)
    li = [(r-now+1)//n]*n
    for i in range(n-srt):
        li[i+srt] += 1
    for i in range((1+end)%n):
        li[i] += 1
else:
    for i in range(r-l+1):
        li[(l+i)%n] = 1
        

for i in range(n):
    print(li[i])
0