結果

問題 No.33 アメーバがたくさん
ユーザー KudeKude
提出日時 2020-09-05 19:15:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-05-06 20:00:41
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 42 ms
53,248 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 44 ms
53,996 KB
testcase_05 AC 43 ms
53,120 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 42 ms
53,376 KB
testcase_09 AC 41 ms
53,376 KB
testcase_10 AC 43 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d, t = map(int, input().split())
from collections import defaultdict
dic = defaultdict(list)
for x in map(int, input().split()):
    xq, xr = divmod(x, d)
    dic[xr].append(xq)
ans = 0
for xs in dic.values():
    xs.sort()
    nxt = -10**18
    for x in xs:
        ans += x + t - max(nxt, x - t) + 1
        nxt = x + t + 1
print(ans)
0