結果

問題 No.836 じょうよ
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2020-11-15 19:07:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 91 ms / 1,000 ms
コード長 277 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-07-23 01:20:45
合計ジャッジ時間 3,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(s, r, n):
    sho = r // n
    amari = r % n

    for i in range(n):
        ans[i] += sho * s
    for i in range(1, amari + 1):
        ans[i] += s


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

calc(1, r, n)
calc(-1, l - 1, n)

print("\n".join(map(str, ans)))
0