結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | tenten |
提出日時 | 2023-02-01 08:47:04 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,121 bytes |
コンパイル時間 | 2,732 ms |
コンパイル使用メモリ | 84,692 KB |
実行使用メモリ | 69,024 KB |
最終ジャッジ日時 | 2024-07-01 06:22:52 |
合計ジャッジ時間 | 8,543 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
57,008 KB |
testcase_01 | AC | 55 ms
50,056 KB |
testcase_02 | AC | 54 ms
50,172 KB |
testcase_03 | AC | 54 ms
50,116 KB |
testcase_04 | AC | 54 ms
50,160 KB |
testcase_05 | AC | 55 ms
50,332 KB |
testcase_06 | AC | 56 ms
50,360 KB |
testcase_07 | AC | 54 ms
50,436 KB |
testcase_08 | AC | 56 ms
50,444 KB |
testcase_09 | AC | 55 ms
50,420 KB |
testcase_10 | AC | 258 ms
55,776 KB |
testcase_11 | AC | 250 ms
53,800 KB |
testcase_12 | AC | 243 ms
53,840 KB |
testcase_13 | AC | 327 ms
56,588 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); ArrayList<HashSet<Integer>> list = new ArrayList<>(); list.add(new HashSet<>()); for (int i = 0; i < n; i++) { int add = 0; int target = sc.nextInt(); for (int j = list.size() - 1; j >= 0 && add == 0; j--) { for (int x : list.get(j)) { if (target > x && target % x == 0) { add = j + 1; break; } } } if (add == list.size()) { list.add(new HashSet<>()); } list.get(add).add(target); } System.out.println(list.size()); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }