結果

問題 No.836 じょうよ
ユーザー nebukuro09nebukuro09
提出日時 2019-06-14 21:29:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-11-08 20:32:57
合計ジャッジ時間 4,589 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
75,776 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
52,096 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 43 ms
51,584 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 WA -
testcase_10 AC 43 ms
51,456 KB
testcase_11 AC 70 ms
67,072 KB
testcase_12 AC 68 ms
66,048 KB
testcase_13 AC 78 ms
68,992 KB
testcase_14 AC 56 ms
61,184 KB
testcase_15 AC 74 ms
68,480 KB
testcase_16 AC 88 ms
75,904 KB
testcase_17 AC 88 ms
76,160 KB
testcase_18 AC 67 ms
65,408 KB
testcase_19 AC 75 ms
69,120 KB
testcase_20 AC 71 ms
70,400 KB
testcase_21 AC 56 ms
61,824 KB
testcase_22 AC 71 ms
69,248 KB
testcase_23 AC 81 ms
75,776 KB
testcase_24 AC 66 ms
65,024 KB
testcase_25 AC 70 ms
68,224 KB
testcase_26 AC 56 ms
61,312 KB
testcase_27 AC 56 ms
61,184 KB
testcase_28 AC 77 ms
69,120 KB
testcase_29 AC 57 ms
61,568 KB
testcase_30 AC 56 ms
61,696 KB
testcase_31 AC 66 ms
65,536 KB
testcase_32 AC 57 ms
62,080 KB
testcase_33 AC 56 ms
61,440 KB
testcase_34 AC 58 ms
62,080 KB
testcase_35 AC 66 ms
65,664 KB
testcase_36 AC 72 ms
70,656 KB
testcase_37 AC 72 ms
70,528 KB
testcase_38 AC 75 ms
73,216 KB
testcase_39 AC 74 ms
71,680 KB
testcase_40 AC 79 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n == 1:
    print(r - l + 1)
    exit()

if l % n == 0:
    ll = l
else:
    ll = l + n - l % n

if r % n == 0:
    rr = r - 1
else:
    rr = r - r % n - 1

base = ((rr + 1) - l) // n
ln = l % n
rn = r % n

for i in range(n):
    x = base
    if i >= ln:
        x += 1
    if i <= rn:
        x += 1
    print(x)
0