結果

問題 No.1250 汝は倍数なりや?
ユーザー tentententen
提出日時 2022-09-16 15:29:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 323 ms / 1,000 ms
コード長 1,359 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 50,368 KB
最終ジャッジ日時 2024-06-01 07:30:50
合計ジャッジ時間 9,613 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,264 KB
testcase_01 AC 55 ms
50,044 KB
testcase_02 AC 56 ms
50,368 KB
testcase_03 AC 56 ms
37,176 KB
testcase_04 AC 52 ms
36,832 KB
testcase_05 AC 52 ms
37,024 KB
testcase_06 AC 53 ms
36,924 KB
testcase_07 AC 55 ms
36,852 KB
testcase_08 AC 53 ms
37,028 KB
testcase_09 AC 52 ms
37,288 KB
testcase_10 AC 52 ms
36,800 KB
testcase_11 AC 53 ms
36,876 KB
testcase_12 AC 53 ms
36,816 KB
testcase_13 AC 53 ms
36,684 KB
testcase_14 AC 52 ms
37,136 KB
testcase_15 AC 52 ms
37,152 KB
testcase_16 AC 53 ms
36,960 KB
testcase_17 AC 51 ms
37,064 KB
testcase_18 AC 52 ms
37,132 KB
testcase_19 AC 54 ms
37,096 KB
testcase_20 AC 58 ms
37,200 KB
testcase_21 AC 54 ms
36,832 KB
testcase_22 AC 53 ms
37,164 KB
testcase_23 AC 58 ms
36,968 KB
testcase_24 AC 58 ms
37,304 KB
testcase_25 AC 59 ms
37,228 KB
testcase_26 AC 53 ms
36,816 KB
testcase_27 AC 59 ms
37,012 KB
testcase_28 AC 54 ms
37,108 KB
testcase_29 AC 56 ms
37,012 KB
testcase_30 AC 56 ms
37,164 KB
testcase_31 AC 54 ms
36,700 KB
testcase_32 AC 54 ms
36,764 KB
testcase_33 AC 323 ms
49,932 KB
testcase_34 AC 161 ms
42,332 KB
testcase_35 AC 210 ms
47,388 KB
testcase_36 AC 307 ms
49,756 KB
testcase_37 AC 277 ms
45,332 KB
testcase_38 AC 276 ms
46,656 KB
testcase_39 AC 162 ms
42,156 KB
testcase_40 AC 165 ms
42,640 KB
testcase_41 AC 299 ms
46,504 KB
testcase_42 AC 210 ms
44,708 KB
testcase_43 AC 317 ms
48,236 KB
testcase_44 AC 217 ms
45,040 KB
testcase_45 AC 254 ms
49,536 KB
testcase_46 AC 223 ms
44,648 KB
testcase_47 AC 208 ms
46,132 KB
testcase_48 AC 52 ms
36,692 KB
testcase_49 AC 53 ms
37,092 KB
testcase_50 AC 52 ms
37,192 KB
testcase_51 AC 53 ms
37,000 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();
        int h = sc.nextInt();
        for (int i = 0; i < n && h > 1; i++) {
            h /= getGCD(Math.abs(sc.nextInt()), h);
        }
        if (h == 1) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    static int getGCD(int x, int y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0