結果

問題 No.917 Make One With GCD
ユーザー tentententen
提出日時 2020-08-27 07:36:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,306 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 79,816 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-11-07 15:26:01
合計ジャッジ時間 8,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 133 ms
41,168 KB
testcase_02 AC 120 ms
40,388 KB
testcase_03 AC 136 ms
41,468 KB
testcase_04 AC 134 ms
41,240 KB
testcase_05 WA -
testcase_06 AC 142 ms
41,300 KB
testcase_07 WA -
testcase_08 AC 133 ms
40,960 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 128 ms
41,328 KB
testcase_28 AC 129 ms
41,336 KB
testcase_29 AC 120 ms
40,264 KB
testcase_30 AC 134 ms
41,352 KB
testcase_31 AC 136 ms
41,324 KB
testcase_32 AC 132 ms
41,104 KB
testcase_33 AC 121 ms
40,416 KB
testcase_34 AC 129 ms
41,224 KB
testcase_35 AC 132 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	TreeMap<Integer, Integer> dp = new TreeMap<>();
    	for (int i = 0; i < n; i++) {
    	    int a = sc.nextInt();
    	    HashMap<Integer, Integer> tmp = new HashMap<>();
    	    for (int x : dp.keySet()) {
    	        int gcd = getGCD(a, x);
    	        if (dp.containsKey(gcd)) {
    	            dp.put(gcd, dp.get(gcd) + dp.get(x));
    	        } else {
    	            if (tmp.containsKey(gcd)) {
    	                tmp.put(gcd, tmp.get(gcd) + dp.get(x));
    	            } else {
    	                tmp.put(gcd, dp.get(x));
    	            }
    	        }
    	    }
    	    if (dp.containsKey(a)) {
    	        dp.put(a, dp.get(a) + 1);
    	    } else {
    	        dp.put(a, 1);
    	    }
    	    for (Map.Entry<Integer, Integer> entry : tmp.entrySet()) {
    	        dp.put(entry.getKey(), entry.getValue());
    	    }
    	}
    	if (dp.containsKey(1)) {
    	    System.out.println(dp.get(1));
    	} else {
    	    System.out.println(0);
    	}
    }
    
    static int getGCD(int x, int y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
}
0