結果

問題 No.390 最長の数列
ユーザー htensaihtensai
提出日時 2019-11-20 13:24:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,742 ms / 5,000 ms
コード長 922 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 79,012 KB
実行使用メモリ 80,436 KB
最終ジャッジ日時 2024-10-06 04:05:26
合計ジャッジ時間 16,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,356 KB
testcase_01 AC 131 ms
41,048 KB
testcase_02 AC 123 ms
40,968 KB
testcase_03 AC 123 ms
41,128 KB
testcase_04 AC 121 ms
41,472 KB
testcase_05 AC 1,742 ms
80,436 KB
testcase_06 AC 1,461 ms
65,004 KB
testcase_07 AC 124 ms
41,024 KB
testcase_08 AC 126 ms
41,124 KB
testcase_09 AC 125 ms
41,348 KB
testcase_10 AC 1,699 ms
75,736 KB
testcase_11 AC 1,672 ms
75,724 KB
testcase_12 AC 1,727 ms
75,604 KB
testcase_13 AC 1,127 ms
60,552 KB
testcase_14 AC 1,118 ms
65,212 KB
testcase_15 AC 116 ms
41,116 KB
testcase_16 AC 125 ms
41,280 KB
testcase_17 AC 307 ms
46,828 KB
testcase_18 AC 385 ms
49,500 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 max = 1;
		for (int i = n - 1; i >= 0; i--) {
		    int count = 1;
		    if (map.containsKey(arr[i])) {
		        count = map.get(arr[i]) + 1;
		    }
		    max = Math.max(max, count);
		    for (int j = 1; j <= Math.sqrt(arr[i]); j++) {
		        if (arr[i] % j == 0) {
		            Integer x = map.get(j);
		            if (x == null || x < count) {
		                map.put(j, count);
		            }
		            x = map.get(arr[i] / j);
		            if (x == null || x < count) {
		                map.put(arr[i] / j, count);
		            }
		        }
		    }
		}
		System.out.println(max);
	}
}
0