結果

問題 No.836 じょうよ
ユーザー sho_00sho_00
提出日時 2020-04-11 15:38:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 81,296 KB
実行使用メモリ 75,632 KB
最終ジャッジ日時 2023-10-19 06:52:21
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,424 KB
testcase_01 AC 39 ms
53,264 KB
testcase_02 AC 39 ms
53,264 KB
testcase_03 WA -
testcase_04 AC 39 ms
53,264 KB
testcase_05 AC 39 ms
53,264 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 39 ms
53,264 KB
testcase_09 AC 39 ms
53,264 KB
testcase_10 AC 40 ms
53,264 KB
testcase_11 AC 64 ms
68,236 KB
testcase_12 AC 61 ms
66,164 KB
testcase_13 AC 69 ms
70,388 KB
testcase_14 AC 53 ms
62,028 KB
testcase_15 AC 67 ms
68,324 KB
testcase_16 AC 80 ms
75,632 KB
testcase_17 WA -
testcase_18 AC 62 ms
66,164 KB
testcase_19 WA -
testcase_20 AC 63 ms
70,256 KB
testcase_21 AC 52 ms
62,028 KB
testcase_22 AC 63 ms
70,256 KB
testcase_23 AC 70 ms
75,264 KB
testcase_24 AC 60 ms
66,160 KB
testcase_25 AC 63 ms
68,208 KB
testcase_26 AC 52 ms
62,028 KB
testcase_27 AC 52 ms
62,028 KB
testcase_28 AC 69 ms
70,388 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,n=map(int,input().split())
v=(r-l+1)//n-1
for i in range(n):
  tmp=v
  if l%n<=i:
    tmp+=1
  if r!=l and 0<=i<=r%n:
    tmp+=1
  print(tmp)
0