結果
問題 | No.836 じょうよ |
ユーザー | titia |
提出日時 | 2019-06-14 21:29:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 127 ms / 1,000 ms |
コード長 | 165 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-11-08 20:28:52 |
合計ジャッジ時間 | 3,743 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 41 |
ソースコード
l,r,n=map(int,input().split()) ANS=(r-l)//n ANSLIST=[ANS]*n for i in range(n): if l+i+ANS*n<=r: ANSLIST[(l+i)%n]+=1 for ans in ANSLIST: print(ans)