結果
| 問題 |
No.33 アメーバがたくさん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-05 08:43:34 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 5,000 ms |
| コード長 | 640 bytes |
| コンパイル時間 | 411 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-09-18 01:29:56 |
| 合計ジャッジ時間 | 1,220 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)