結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | tenten |
提出日時 | 2022-08-30 11:20:32 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,669 ms / 2,000 ms |
コード長 | 1,660 bytes |
コンパイル時間 | 3,664 ms |
コンパイル使用メモリ | 78,416 KB |
実行使用メモリ | 64,296 KB |
最終ジャッジ日時 | 2024-11-07 06:35:31 |
合計ジャッジ時間 | 6,847 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
37,052 KB |
testcase_01 | AC | 52 ms
36,868 KB |
testcase_02 | AC | 52 ms
37,056 KB |
testcase_03 | AC | 51 ms
36,908 KB |
testcase_04 | AC | 52 ms
37,028 KB |
testcase_05 | AC | 52 ms
36,848 KB |
testcase_06 | AC | 53 ms
36,684 KB |
testcase_07 | AC | 52 ms
36,904 KB |
testcase_08 | AC | 51 ms
36,852 KB |
testcase_09 | AC | 51 ms
36,560 KB |
testcase_10 | AC | 132 ms
40,884 KB |
testcase_11 | AC | 133 ms
40,676 KB |
testcase_12 | AC | 135 ms
40,880 KB |
testcase_13 | AC | 276 ms
45,144 KB |
testcase_14 | AC | 1,669 ms
64,296 KB |
testcase_15 | AC | 701 ms
50,364 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); HashMap<Integer, Integer> counts = new HashMap<>(); for (int i = 0; i < n; i++) { int x = sc.nextInt(); int max = 0; if (x != 1 && counts.containsKey(1)) { max++; } for (int j = 2; j <= Math.sqrt(x); j++) { if (x % j == 0) { max = Math.max(max, counts.getOrDefault(j, 0)); max = Math.max(max, counts.getOrDefault(x / j, 0)); } } counts.put(x, Math.max(counts.getOrDefault(x, 0), max + 1)); } int ans = 0; for (int x : counts.values()) { ans = Math.max(ans, x); } System.out.println(ans); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }