結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | ks2m |
提出日時 | 2020-01-31 22:46:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,154 bytes |
コンパイル時間 | 3,144 ms |
コンパイル使用メモリ | 78,028 KB |
実行使用メモリ | 87,520 KB |
最終ジャッジ日時 | 2024-09-17 09:40:08 |
合計ジャッジ時間 | 5,992 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
50,360 KB |
testcase_01 | AC | 61 ms
50,540 KB |
testcase_02 | AC | 62 ms
50,536 KB |
testcase_03 | AC | 68 ms
50,740 KB |
testcase_04 | WA | - |
testcase_05 | AC | 74 ms
50,744 KB |
testcase_06 | AC | 64 ms
50,700 KB |
testcase_07 | AC | 61 ms
50,432 KB |
testcase_08 | AC | 58 ms
50,448 KB |
testcase_09 | AC | 59 ms
50,528 KB |
testcase_10 | AC | 125 ms
54,912 KB |
testcase_11 | AC | 121 ms
54,896 KB |
testcase_12 | AC | 124 ms
54,844 KB |
testcase_13 | WA | - |
testcase_14 | AC | 906 ms
87,520 KB |
testcase_15 | AC | 480 ms
64,036 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] a = new int[n]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } br.close(); int[] arr = new int[300001]; for (int i = 0; i < n; i++) { List<Integer> list = divList(a[i]); int max = 0; for (int j : list) { max = Math.max(max, arr[j]); } arr[a[i]] = Math.max(arr[a[i]], max + 1); } int ans = 0; for (int i = 0; i < arr.length; i++) { ans = Math.max(ans, arr[i]); } System.out.println(ans); } static List<Integer> divList(int n) { List<Integer> list = new ArrayList<>(); int end = (int) Math.sqrt(n); for (int i = 1; i <= end; i++) { if (n % i == 0) { list.add(i); } } int i = end * end == n ? list.size() - 2 : list.size() - 1; for ( ; i > 0; i--) { list.add(n / list.get(i)); } return list; } }