結果

問題 No.33 アメーバがたくさん
ユーザー tentententen
提出日時 2021-01-19 18:00:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 1,050 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 80,020 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-05-09 20:48:57
合計ジャッジ時間 4,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,424 KB
testcase_01 AC 126 ms
41,220 KB
testcase_02 AC 123 ms
41,152 KB
testcase_03 AC 128 ms
41,172 KB
testcase_04 AC 126 ms
41,428 KB
testcase_05 AC 126 ms
41,340 KB
testcase_06 AC 125 ms
41,296 KB
testcase_07 AC 115 ms
41,540 KB
testcase_08 AC 135 ms
41,188 KB
testcase_09 AC 122 ms
41,568 KB
testcase_10 AC 126 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int BASE = 1000000000;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		long t = sc.nextInt();
		HashMap<Integer, TreeSet<Integer>> ameba = new HashMap<>();
		for (int i = 0; i < n; i++) {
		    int x = sc.nextInt() + BASE;
		    int mod = x % d;
		    int div = x / d;
		    if (!ameba.containsKey(mod)) {
		        ameba.put(mod, new TreeSet<>());
		    }
		    ameba.get(mod).add(div);
		}
		long ans = 0;
		for (TreeSet<Integer> set : ameba.values()) {
		    int left = -1;
		    int right = -1;
		    for (int x : set) {
		        if (left == -1) {
		            left = x;
		            right = x;
		            continue;
		        }
		        if (x - right > 2 * t) {
		            ans += right - left + 1 + 2 * t;
		            left = x;
		            right = x;
		        } else {
		            right = x;
		        }
		    }
		    ans += right - left + 1 + 2 * t;
		}
		System.out.println(ans);
	}
}
0