結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー tentententen
提出日時 2021-11-08 12:29:58
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,738 bytes
コンパイル時間 3,301 ms
コンパイル使用メモリ 78,300 KB
実行使用メモリ 62,076 KB
最終ジャッジ日時 2024-11-08 05:09:21
合計ジャッジ時間 23,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 74 ms
45,628 KB
testcase_02 AC 75 ms
45,736 KB
testcase_03 AC 78 ms
45,932 KB
testcase_04 AC 77 ms
45,580 KB
testcase_05 AC 74 ms
45,556 KB
testcase_06 AC 75 ms
45,668 KB
testcase_07 AC 78 ms
45,936 KB
testcase_08 AC 77 ms
45,828 KB
testcase_09 AC 73 ms
45,772 KB
testcase_10 AC 85 ms
45,956 KB
testcase_11 AC 72 ms
45,628 KB
testcase_12 AC 77 ms
45,908 KB
testcase_13 AC 1,466 ms
59,124 KB
testcase_14 AC 1,489 ms
59,676 KB
testcase_15 AC 1,512 ms
59,400 KB
testcase_16 AC 1,461 ms
59,556 KB
testcase_17 AC 1,493 ms
60,768 KB
testcase_18 AC 868 ms
60,620 KB
testcase_19 AC 1,939 ms
60,656 KB
testcase_20 AC 522 ms
57,664 KB
testcase_21 AC 516 ms
57,716 KB
testcase_22 AC 1,753 ms
62,076 KB
testcase_23 AC 286 ms
53,552 KB
testcase_24 AC 288 ms
53,704 KB
testcase_25 AC 1,327 ms
60,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[2000001];
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            for (int j = 1; j <= Math.sqrt(x); j++) {
                if (x % j == 0) {
                    counts[j]++;
                    if (j * j < x) {
                        counts[x / j]++;
                    }
                }
            }
        }
        int[] ans = new int[n];
        for (int i = 1; i < counts.length; i++) {
            if (counts[i] > 0) {
                ans[n - counts[i]] = i;
            }
        }
        int max = 0;
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            max = Math.max(x, max);
            sb.append(max).append("\n");
        }
        System.out.print(sb);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0