結果
問題 | No.917 Make One With GCD |
ユーザー | tenten |
提出日時 | 2020-08-27 07:37:47 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,298 bytes |
コンパイル時間 | 2,615 ms |
コンパイル使用メモリ | 79,180 KB |
実行使用メモリ | 41,772 KB |
最終ジャッジ日時 | 2024-11-07 15:26:11 |
合計ジャッジ時間 | 9,329 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 152 ms
41,504 KB |
testcase_01 | AC | 135 ms
40,972 KB |
testcase_02 | AC | 134 ms
41,052 KB |
testcase_03 | AC | 118 ms
40,348 KB |
testcase_04 | AC | 135 ms
41,092 KB |
testcase_05 | AC | 139 ms
41,436 KB |
testcase_06 | AC | 143 ms
41,268 KB |
testcase_07 | WA | - |
testcase_08 | AC | 137 ms
41,376 KB |
testcase_09 | AC | 154 ms
41,772 KB |
testcase_10 | AC | 157 ms
41,200 KB |
testcase_11 | AC | 155 ms
41,244 KB |
testcase_12 | AC | 155 ms
41,376 KB |
testcase_13 | AC | 152 ms
41,352 KB |
testcase_14 | AC | 139 ms
40,268 KB |
testcase_15 | AC | 155 ms
41,484 KB |
testcase_16 | AC | 152 ms
41,592 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 133 ms
41,076 KB |
testcase_28 | AC | 132 ms
41,152 KB |
testcase_29 | AC | 130 ms
40,864 KB |
testcase_30 | AC | 137 ms
41,056 KB |
testcase_31 | AC | 132 ms
41,084 KB |
testcase_32 | AC | 133 ms
41,316 KB |
testcase_33 | AC | 132 ms
41,304 KB |
testcase_34 | AC | 133 ms
41,268 KB |
testcase_35 | AC | 132 ms
40,940 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); TreeMap<Integer, Long> dp = new TreeMap<>(); for (int i = 0; i < n; i++) { int a = sc.nextInt(); HashMap<Integer, Long> tmp = new HashMap<>(); for (int x : dp.keySet()) { int gcd = getGCD(a, x); if (dp.containsKey(gcd)) { dp.put(gcd, dp.get(gcd) + dp.get(x)); } else { if (tmp.containsKey(gcd)) { tmp.put(gcd, tmp.get(gcd) + dp.get(x)); } else { tmp.put(gcd, dp.get(x)); } } } if (dp.containsKey(a)) { dp.put(a, dp.get(a) + 1); } else { dp.put(a, 1L); } for (Map.Entry<Integer, Long> entry : tmp.entrySet()) { dp.put(entry.getKey(), entry.getValue()); } } if (dp.containsKey(1)) { System.out.println(dp.get(1)); } else { System.out.println(0); } } static int getGCD(int x, int y) { if (x % y == 0) { return y; } else { return getGCD(y, x % y); } } }