結果

問題 No.917 Make One With GCD
ユーザー htensaihtensai
提出日時 2019-12-18 15:58:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 2,704 ms
コンパイル使用メモリ 78,088 KB
実行使用メモリ 50,592 KB
最終ジャッジ日時 2024-06-24 11:13:43
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,008 KB
testcase_01 AC 55 ms
50,220 KB
testcase_02 AC 55 ms
50,388 KB
testcase_03 AC 55 ms
50,188 KB
testcase_04 AC 58 ms
50,184 KB
testcase_05 AC 56 ms
50,164 KB
testcase_06 AC 56 ms
49,928 KB
testcase_07 AC 55 ms
50,220 KB
testcase_08 AC 65 ms
50,172 KB
testcase_09 AC 61 ms
49,916 KB
testcase_10 AC 61 ms
50,284 KB
testcase_11 AC 60 ms
50,136 KB
testcase_12 AC 62 ms
50,464 KB
testcase_13 AC 60 ms
50,448 KB
testcase_14 AC 61 ms
49,896 KB
testcase_15 AC 61 ms
50,232 KB
testcase_16 AC 60 ms
50,240 KB
testcase_17 AC 56 ms
49,788 KB
testcase_18 AC 57 ms
50,380 KB
testcase_19 AC 55 ms
50,300 KB
testcase_20 AC 55 ms
49,916 KB
testcase_21 AC 56 ms
50,260 KB
testcase_22 AC 55 ms
49,808 KB
testcase_23 AC 57 ms
50,308 KB
testcase_24 AC 56 ms
50,320 KB
testcase_25 AC 57 ms
50,328 KB
testcase_26 AC 55 ms
50,108 KB
testcase_27 AC 57 ms
50,368 KB
testcase_28 AC 55 ms
50,344 KB
testcase_29 AC 56 ms
49,904 KB
testcase_30 AC 55 ms
49,876 KB
testcase_31 AC 55 ms
50,264 KB
testcase_32 AC 54 ms
50,592 KB
testcase_33 AC 57 ms
49,912 KB
testcase_34 AC 54 ms
49,856 KB
testcase_35 AC 56 ms
50,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static HashMap<Integer, Long>[] maps;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] first = br.readLine().split(" ", n);
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = Integer.parseInt(first[i]);
        }
        maps = new HashMap[n];
        for (int i = 0; i < n; i++) {
            maps[i] = new HashMap<Integer, Long>();
        }
        System.out.println(getCount(0, arr, -1));
    }
    
    static long getCount(int idx, int[] arr, int value) {
        if (idx >= arr.length) {
            return 0;
        }
        if (maps[idx].containsKey(value)) {
            return maps[idx].get(value);
        }
        long count = getCount(idx + 1, arr, value);
        int next;
        if (value == -1) {
            next = arr[idx];
        } else {
            next = gcd(value, arr[idx]);
        }
        if (next == 1) {
            count += (long)(Math.pow(2, arr.length - idx - 1));
        } else {
            count += getCount(idx + 1, arr, next);
        }
        maps[idx].put(value, count);
        return count;
    }
    
    static int gcd(int x, int y) {
        if (x % y == 0) {
            return y;
        } else {
            return gcd(y, x % y);
        }
    }
}
0