結果

問題 No.390 最長の数列
ユーザー TententenTententen
提出日時 2020-12-14 14:56:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,603 ms / 5,000 ms
コード長 817 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 78,976 KB
実行使用メモリ 74,748 KB
最終ジャッジ日時 2024-09-20 00:43:58
合計ジャッジ時間 13,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,748 KB
testcase_01 AC 117 ms
54,152 KB
testcase_02 AC 107 ms
54,688 KB
testcase_03 AC 119 ms
53,932 KB
testcase_04 AC 110 ms
53,472 KB
testcase_05 AC 1,603 ms
74,748 KB
testcase_06 AC 1,372 ms
64,056 KB
testcase_07 AC 118 ms
41,396 KB
testcase_08 AC 107 ms
41,212 KB
testcase_09 AC 104 ms
40,216 KB
testcase_10 AC 1,414 ms
63,380 KB
testcase_11 AC 1,498 ms
62,960 KB
testcase_12 AC 1,433 ms
62,848 KB
testcase_13 AC 1,046 ms
61,700 KB
testcase_14 AC 1,006 ms
63,312 KB
testcase_15 AC 108 ms
40,908 KB
testcase_16 AC 135 ms
41,596 KB
testcase_17 AC 278 ms
46,732 KB
testcase_18 AC 330 ms
47,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		Arrays.sort(arr);
		HashMap<Integer, Integer> map = new HashMap<>();
		int ans = 0;
		for (int i = 0; i < n; i++) {
		    int max = 0;
		    for (int j = 1; j <= Math.sqrt(arr[i]); j++) {
		        if (arr[i] % j == 0) {
		            if (map.containsKey(j)) {
		                max = Math.max(max, map.get(j));
		            }
		            if (map.containsKey(arr[i] / j)) {
		                max = Math.max(max, map.get(arr[i] / j));
		            }
		        }
		    }
		    map.put(arr[i], max + 1);
		    ans = Math.max(ans, max + 1);
		}
		System.out.println(ans);
	}
}
0