結果
| 問題 | No.33 アメーバがたくさん |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-05 08:43:34 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 94 ms / 5,000 ms |
| + 579µs | |
| コード長 | 640 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 21,408 KB |
| 実行使用メモリ | 15,864 KB |
| 最終ジャッジ日時 | 2026-08-29 22:43:53 |
| 合計ジャッジ時間 | 2,417 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
n, d, t = map(int, input().split())
ameba = list(map(int, input().split()))
ameba.sort()
check = [0] * n
ans = 0
for i in range(n):
if check[i]:
continue
a = []
for j in range(i, n):
if ameba[j] % d == ameba[i] % d:
a.append(ameba[j])
check[j] = 1
low = a[0] - t * d
high = a[0] + t * d
for j in range(1, len(a)):
nlow = a[j] - t * d
nhigh = a[j] + t * d
if nlow > high:
ans += (high - low) // d + 1
low = nlow
high = nhigh
else:
high = nhigh
ans += (high - low) // d + 1
print(ans)