結果

問題 No.836 じょうよ
ユーザー sho_00sho_00
提出日時 2020-04-11 16:11:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 214 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-19 04:01:46
合計ジャッジ時間 3,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
76,412 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 37 ms
52,244 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 38 ms
51,744 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 35 ms
51,712 KB
testcase_11 AC 55 ms
67,200 KB
testcase_12 AC 53 ms
66,304 KB
testcase_13 AC 62 ms
69,372 KB
testcase_14 AC 47 ms
61,568 KB
testcase_15 AC 62 ms
68,352 KB
testcase_16 AC 72 ms
76,672 KB
testcase_17 AC 70 ms
76,416 KB
testcase_18 AC 54 ms
65,792 KB
testcase_19 AC 60 ms
69,376 KB
testcase_20 AC 56 ms
71,296 KB
testcase_21 AC 46 ms
61,960 KB
testcase_22 AC 56 ms
69,632 KB
testcase_23 AC 62 ms
76,452 KB
testcase_24 AC 52 ms
65,280 KB
testcase_25 AC 55 ms
68,096 KB
testcase_26 AC 45 ms
61,568 KB
testcase_27 AC 46 ms
61,696 KB
testcase_28 AC 62 ms
69,248 KB
testcase_29 AC 44 ms
61,440 KB
testcase_30 AC 45 ms
62,080 KB
testcase_31 AC 55 ms
66,048 KB
testcase_32 AC 47 ms
62,208 KB
testcase_33 AC 46 ms
61,312 KB
testcase_34 AC 47 ms
62,848 KB
testcase_35 AC 54 ms
65,612 KB
testcase_36 AC 57 ms
71,680 KB
testcase_37 AC 57 ms
70,912 KB
testcase_38 AC 59 ms
73,984 KB
testcase_39 AC 56 ms
72,320 KB
testcase_40 AC 61 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

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 and l%n!=0:
    ans+=1
  if i<=r%n and r%n!=0:
    ans+=1
  if n==1:
    ans+=1
  print(ans)
0