結果

問題 No.917 Make One With GCD
ユーザー tentententen
提出日時 2021-12-01 17:21:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,521 bytes
コンパイル時間 2,951 ms
コンパイル使用メモリ 78,792 KB
実行使用メモリ 38,008 KB
最終ジャッジ日時 2024-07-04 17:41:18
合計ジャッジ時間 6,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,104 KB
testcase_01 AC 50 ms
37,144 KB
testcase_02 AC 49 ms
36,976 KB
testcase_03 AC 49 ms
37,288 KB
testcase_04 AC 50 ms
37,236 KB
testcase_05 AC 50 ms
36,816 KB
testcase_06 AC 49 ms
37,376 KB
testcase_07 AC 50 ms
36,944 KB
testcase_08 AC 51 ms
36,816 KB
testcase_09 AC 74 ms
37,720 KB
testcase_10 AC 66 ms
37,824 KB
testcase_11 AC 77 ms
37,596 KB
testcase_12 AC 67 ms
37,756 KB
testcase_13 AC 59 ms
37,460 KB
testcase_14 AC 61 ms
37,596 KB
testcase_15 AC 62 ms
38,008 KB
testcase_16 AC 59 ms
37,480 KB
testcase_17 AC 51 ms
37,196 KB
testcase_18 AC 52 ms
37,364 KB
testcase_19 AC 49 ms
37,036 KB
testcase_20 AC 50 ms
36,816 KB
testcase_21 AC 51 ms
37,376 KB
testcase_22 AC 50 ms
37,104 KB
testcase_23 AC 52 ms
37,288 KB
testcase_24 AC 51 ms
37,092 KB
testcase_25 AC 56 ms
37,248 KB
testcase_26 AC 51 ms
37,144 KB
testcase_27 AC 49 ms
37,172 KB
testcase_28 AC 50 ms
36,824 KB
testcase_29 AC 50 ms
37,212 KB
testcase_30 AC 51 ms
37,264 KB
testcase_31 AC 50 ms
37,096 KB
testcase_32 AC 51 ms
36,824 KB
testcase_33 AC 51 ms
37,184 KB
testcase_34 AC 49 ms
36,824 KB
testcase_35 AC 50 ms
36,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        TreeMap<Integer, Long> counts = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            Integer key = 0;
            while ((key = counts.higherKey(key)) != null) {
                int ans = getGCD(key, x);
                counts.put(ans, counts.getOrDefault(ans, 0L) + counts.get(key));
            }
            counts.put(x, counts.getOrDefault(x, 0L) + 1);
        }
        System.out.println(counts.getOrDefault(1, 0L));
    }
    
    static int getGCD(int x, int y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
}
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 next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0