結果

問題 No.33 アメーバがたくさん
ユーザー colognecologne
提出日時 2022-01-23 16:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 711 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 53,560 KB
最終ジャッジ日時 2024-05-07 04:21:07
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,380 KB
testcase_01 AC 37 ms
52,896 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 39 ms
52,488 KB
testcase_04 AC 37 ms
52,360 KB
testcase_05 AC 37 ms
52,324 KB
testcase_06 AC 36 ms
52,916 KB
testcase_07 AC 37 ms
53,376 KB
testcase_08 AC 37 ms
53,560 KB
testcase_09 AC 37 ms
53,132 KB
testcase_10 AC 37 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


def main():
    N, D, T = map(int, input().split())

    mod_dict = {}

    for x in map(int, input().split()):
        if x % D not in mod_dict:
            mod_dict[x % D] = []
        mod_dict[x % D].append(x//D)

    def calc(x):
        events = []
        for i in x:
            events.append((i-T, 1))
            events.append((i+T+1, -1))

        events.sort()
        cur = 0
        ans = 0
        for i in range(len(events)-1):
            tm, val = events[i]
            cur += val
            if cur > 0:
                ans += events[i+1][0] - tm
        return ans

    print(sum(map(calc, mod_dict.values())))


if __name__ == '__main__':
    main()
0