結果

問題 No.836 じょうよ
ユーザー lllllll88938494
提出日時 2022-01-20 12:34:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 200 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-11-23 15:42:13
合計ジャッジ時間 4,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21 RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,n=map(int,input().split())
mod=set()
dic={}
for i in range(l,r+1):
    mod.add(i%n)
    dic[i%n]=i
    if len(mod) == n:
        break
    
for i in range(n):
    print( ((r-dic[i])//n)+1 )

    
0