結果

問題 No.836 じょうよ
ユーザー sho_00sho_00
提出日時 2020-04-11 15:38:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-09-19 03:12:54
合計ジャッジ時間 3,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
75,904 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 WA -
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 35 ms
51,456 KB
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 62 ms
66,816 KB
testcase_12 AC 59 ms
65,536 KB
testcase_13 AC 70 ms
69,376 KB
testcase_14 AC 51 ms
61,440 KB
testcase_15 AC 66 ms
68,352 KB
testcase_16 AC 77 ms
76,032 KB
testcase_17 WA -
testcase_18 AC 66 ms
65,536 KB
testcase_19 WA -
testcase_20 AC 66 ms
70,656 KB
testcase_21 AC 55 ms
61,568 KB
testcase_22 AC 70 ms
69,248 KB
testcase_23 AC 80 ms
75,904 KB
testcase_24 AC 66 ms
64,896 KB
testcase_25 AC 69 ms
67,968 KB
testcase_26 AC 55 ms
60,928 KB
testcase_27 AC 55 ms
61,312 KB
testcase_28 AC 78 ms
69,376 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