結果

問題 No.836 じょうよ
ユーザー ohanaohana
提出日時 2023-10-27 11:39:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 76,484 KB
最終ジャッジ日時 2024-09-25 12:58:42
合計ジャッジ時間 4,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
76,180 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 39 ms
52,080 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,492 KB
testcase_05 AC 38 ms
52,976 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,708 KB
testcase_08 AC 36 ms
52,692 KB
testcase_09 AC 36 ms
52,864 KB
testcase_10 AC 36 ms
52,860 KB
testcase_11 AC 56 ms
67,028 KB
testcase_12 AC 55 ms
67,908 KB
testcase_13 AC 57 ms
67,448 KB
testcase_14 AC 44 ms
59,168 KB
testcase_15 AC 51 ms
65,804 KB
testcase_16 AC 70 ms
75,896 KB
testcase_17 WA -
testcase_18 AC 56 ms
67,728 KB
testcase_19 WA -
testcase_20 AC 59 ms
71,840 KB
testcase_21 AC 53 ms
64,792 KB
testcase_22 AC 58 ms
70,828 KB
testcase_23 AC 65 ms
75,976 KB
testcase_24 AC 52 ms
65,680 KB
testcase_25 AC 58 ms
69,720 KB
testcase_26 AC 44 ms
60,140 KB
testcase_27 AC 49 ms
62,396 KB
testcase_28 AC 60 ms
68,548 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 61 ms
71,620 KB
testcase_37 AC 57 ms
72,888 KB
testcase_38 AC 59 ms
74,488 KB
testcase_39 AC 59 ms
73,032 KB
testcase_40 AC 66 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, n = map(int, input().split())
t = r - l + 1

if (m := t % n) == 0:
    for i in range(n):
        print(t // n)
else:
    for i in range(ln := l % n):
        print(t // n)
    for i in range(m):
        print(t // n + 1)
    for i in range(n - ln - m):
        print(t // n)
0