結果

問題 No.33 アメーバがたくさん
ユーザー zimphazimpha
提出日時 2017-12-12 22:04:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-12-14 06:30:46
合計ジャッジ時間 1,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,616 KB
testcase_01 AC 41 ms
53,840 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 39 ms
53,284 KB
testcase_04 AC 40 ms
53,288 KB
testcase_05 AC 39 ms
52,892 KB
testcase_06 AC 39 ms
52,152 KB
testcase_07 AC 40 ms
53,216 KB
testcase_08 AC 41 ms
52,000 KB
testcase_09 AC 39 ms
52,804 KB
testcase_10 AC 41 ms
53,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d, t = list(map(int, input().split()))
pos = dict()
for x in map(int, input().split()):
  y = (x % d + d) % d
  if y in pos:
    pos[y].append(x)
  else:
    pos[y] = [x]
ret = 0
for k, v in pos.items():
  seg = []
  for x in v:
    seg.append((x - d * t, x + d * t))
  seg.sort()
  l, r = seg[0]
  for e in seg[1:]:
    if e[0] <= r:
      r = max(r, e[1])
    else:
      ret += (r - l) // d + 1
      l, r = e
  ret += (r - l) // d + 1
print(ret)
0