結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | tenten |
提出日時 | 2020-08-25 11:16:04 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 974 bytes |
コンパイル時間 | 2,339 ms |
コンパイル使用メモリ | 81,176 KB |
実行使用メモリ | 83,164 KB |
最終ジャッジ日時 | 2024-11-06 11:08:38 |
合計ジャッジ時間 | 10,168 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
54,020 KB |
testcase_01 | AC | 134 ms
54,060 KB |
testcase_02 | AC | 142 ms
54,272 KB |
testcase_03 | AC | 136 ms
53,964 KB |
testcase_04 | AC | 136 ms
53,948 KB |
testcase_05 | AC | 135 ms
54,056 KB |
testcase_06 | AC | 139 ms
53,920 KB |
testcase_07 | AC | 139 ms
53,920 KB |
testcase_08 | AC | 136 ms
53,948 KB |
testcase_09 | AC | 137 ms
54,148 KB |
testcase_10 | AC | 277 ms
58,200 KB |
testcase_11 | AC | 249 ms
58,144 KB |
testcase_12 | AC | 253 ms
58,096 KB |
testcase_13 | AC | 868 ms
67,672 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 1,422 ms
73,836 KB |
ソースコード
import java.util.*; public class Main { static final int MOD = 1000000007; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); HashMap<Integer, Integer> map = new HashMap<>(); int ans = 0; for (int i = 0; i < n; i++) { int x = sc.nextInt(); int max = 0; if (x != 1 && map.containsKey(1)) { max = map.get(1); } for (int j = 2; j <= Math.sqrt(x); j++) { if (x % j == 0) { if (map.containsKey(j)) { max = Math.max(max, map.get(j)); } if (map.containsKey(x / j)) { max = Math.max(max, map.get(x / j)); } } } map.put(x, max + 1); ans = Math.max(ans, max + 1); } System.out.println(ans); } }