結果
問題 | No.33 アメーバがたくさん |
ユーザー | htensai |
提出日時 | 2020-01-15 14:26:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 133 ms / 5,000 ms |
コード長 | 971 bytes |
コンパイル時間 | 2,622 ms |
コンパイル使用メモリ | 76,276 KB |
実行使用メモリ | 54,312 KB |
最終ジャッジ日時 | 2024-06-10 22:00:41 |
合計ジャッジ時間 | 4,453 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
53,976 KB |
testcase_01 | AC | 130 ms
54,176 KB |
testcase_02 | AC | 124 ms
54,264 KB |
testcase_03 | AC | 127 ms
53,776 KB |
testcase_04 | AC | 127 ms
53,980 KB |
testcase_05 | AC | 131 ms
54,312 KB |
testcase_06 | AC | 130 ms
54,172 KB |
testcase_07 | AC | 129 ms
53,896 KB |
testcase_08 | AC | 133 ms
54,136 KB |
testcase_09 | AC | 132 ms
54,152 KB |
testcase_10 | AC | 124 ms
54,128 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long d = sc.nextInt(); long t = sc.nextInt(); int BASE = 1000000000; long count = 0; HashMap<Long, Long> map = new HashMap<>(); int[] arr = new int[n]; for (int i = 0; i < n; i++) { arr[i] = sc.nextInt(); } Arrays.sort(arr); for (int i = 0; i < n; i++) { long x = arr[i] + BASE; long mod = x % d; if (map.containsKey(mod)) { long y = map.get(mod); if (x - y > 2 * t * d) { count += 2 * t + 1; } else { count += (x - y) / d; } } else { count += 2 * t + 1; } map.put(mod, x); } System.out.println(count); } }