結果

問題 No.836 じょうよ
ユーザー sho_00sho_00
提出日時 2020-04-11 16:01:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 77,104 KB
最終ジャッジ日時 2024-09-19 03:50:07
合計ジャッジ時間 3,602 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
76,820 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 34 ms
53,144 KB
testcase_03 AC 34 ms
52,400 KB
testcase_04 AC 34 ms
52,136 KB
testcase_05 AC 33 ms
52,268 KB
testcase_06 AC 33 ms
53,176 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,004 KB
testcase_09 WA -
testcase_10 AC 34 ms
53,868 KB
testcase_11 AC 53 ms
69,068 KB
testcase_12 AC 50 ms
67,292 KB
testcase_13 AC 61 ms
69,612 KB
testcase_14 AC 46 ms
61,404 KB
testcase_15 AC 63 ms
69,176 KB
testcase_16 AC 68 ms
77,104 KB
testcase_17 AC 64 ms
76,928 KB
testcase_18 AC 52 ms
66,340 KB
testcase_19 AC 57 ms
70,376 KB
testcase_20 AC 53 ms
71,548 KB
testcase_21 AC 43 ms
61,768 KB
testcase_22 AC 53 ms
70,012 KB
testcase_23 AC 63 ms
76,264 KB
testcase_24 AC 51 ms
67,204 KB
testcase_25 AC 51 ms
68,956 KB
testcase_26 AC 47 ms
61,220 KB
testcase_27 AC 46 ms
62,320 KB
testcase_28 AC 58 ms
70,204 KB
testcase_29 AC 42 ms
62,716 KB
testcase_30 AC 43 ms
61,908 KB
testcase_31 AC 51 ms
67,356 KB
testcase_32 AC 44 ms
63,388 KB
testcase_33 AC 43 ms
61,616 KB
testcase_34 AC 45 ms
62,696 KB
testcase_35 AC 51 ms
66,396 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,n=map(int,input().split())
cnt=[0]*n
v1=l//n+1 if l%n!=0 else l//n
v2=r//n
for i in range(n):
  ans=v2-v1
  if i>=l%n:
    ans+=1
  if l!=r and i<=r%n:
    ans+=1
  print(ans)
0