結果

問題 No.1250 汝は倍数なりや?
ユーザー tentententen
提出日時 2024-07-03 13:46:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 312 ms / 1,000 ms
コード長 1,442 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 78,508 KB
実行使用メモリ 60,904 KB
最終ジャッジ日時 2024-07-03 13:47:10
合計ジャッジ時間 9,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,292 KB
testcase_01 AC 50 ms
50,612 KB
testcase_02 AC 51 ms
50,260 KB
testcase_03 AC 52 ms
50,280 KB
testcase_04 AC 51 ms
50,496 KB
testcase_05 AC 52 ms
50,320 KB
testcase_06 AC 52 ms
50,552 KB
testcase_07 AC 52 ms
50,412 KB
testcase_08 AC 54 ms
50,228 KB
testcase_09 AC 52 ms
50,420 KB
testcase_10 AC 51 ms
50,544 KB
testcase_11 AC 51 ms
50,516 KB
testcase_12 AC 51 ms
50,436 KB
testcase_13 AC 52 ms
50,308 KB
testcase_14 AC 51 ms
50,384 KB
testcase_15 AC 52 ms
50,512 KB
testcase_16 AC 52 ms
50,384 KB
testcase_17 AC 51 ms
50,476 KB
testcase_18 AC 51 ms
50,060 KB
testcase_19 AC 51 ms
50,412 KB
testcase_20 AC 52 ms
50,388 KB
testcase_21 AC 53 ms
50,464 KB
testcase_22 AC 52 ms
50,412 KB
testcase_23 AC 58 ms
50,516 KB
testcase_24 AC 57 ms
50,520 KB
testcase_25 AC 58 ms
50,500 KB
testcase_26 AC 51 ms
50,276 KB
testcase_27 AC 60 ms
52,492 KB
testcase_28 AC 52 ms
50,428 KB
testcase_29 AC 54 ms
50,036 KB
testcase_30 AC 53 ms
50,044 KB
testcase_31 AC 52 ms
50,404 KB
testcase_32 AC 51 ms
50,244 KB
testcase_33 AC 304 ms
60,832 KB
testcase_34 AC 152 ms
54,636 KB
testcase_35 AC 198 ms
58,572 KB
testcase_36 AC 304 ms
60,904 KB
testcase_37 AC 263 ms
55,984 KB
testcase_38 AC 262 ms
57,776 KB
testcase_39 AC 141 ms
54,772 KB
testcase_40 AC 161 ms
54,616 KB
testcase_41 AC 288 ms
57,956 KB
testcase_42 AC 195 ms
55,812 KB
testcase_43 AC 312 ms
58,532 KB
testcase_44 AC 199 ms
55,592 KB
testcase_45 AC 232 ms
60,832 KB
testcase_46 AC 189 ms
54,976 KB
testcase_47 AC 183 ms
57,548 KB
testcase_48 AC 50 ms
50,292 KB
testcase_49 AC 51 ms
50,456 KB
testcase_50 AC 49 ms
49,992 KB
testcase_51 AC 51 ms
49,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int h = sc.nextInt();
        while (n-- > 0 && h > 1) {
            h /= getGCD(h, Math.abs(sc.nextInt()));
        }
        System.out.println(h == 1 ? "YES" : "NO");
    }
    
    static int getGCD(int x, int y) {
        if (y == 0) {
            return x;
        } else {
            return getGCD(y, x % y);
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0