結果

問題 No.1250 汝は倍数なりや?
ユーザー tentententen
提出日時 2020-10-10 06:08:54
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 495 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 57,060 KB
最終ジャッジ日時 2024-07-20 15:35:57
合計ジャッジ時間 17,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,124 KB
testcase_01 AC 128 ms
41,128 KB
testcase_02 AC 109 ms
40,144 KB
testcase_03 AC 116 ms
39,968 KB
testcase_04 AC 129 ms
41,124 KB
testcase_05 AC 116 ms
40,100 KB
testcase_06 AC 128 ms
40,844 KB
testcase_07 AC 130 ms
41,236 KB
testcase_08 AC 127 ms
41,148 KB
testcase_09 AC 128 ms
41,060 KB
testcase_10 AC 130 ms
41,076 KB
testcase_11 AC 129 ms
40,880 KB
testcase_12 AC 114 ms
39,956 KB
testcase_13 AC 118 ms
40,084 KB
testcase_14 AC 132 ms
40,980 KB
testcase_15 AC 120 ms
40,432 KB
testcase_16 AC 130 ms
41,388 KB
testcase_17 AC 129 ms
40,924 KB
testcase_18 AC 130 ms
41,424 KB
testcase_19 AC 117 ms
39,984 KB
testcase_20 AC 132 ms
41,112 KB
testcase_21 RE -
testcase_22 AC 132 ms
40,976 KB
testcase_23 AC 184 ms
42,296 KB
testcase_24 AC 187 ms
41,976 KB
testcase_25 AC 190 ms
42,160 KB
testcase_26 AC 132 ms
41,336 KB
testcase_27 AC 191 ms
42,436 KB
testcase_28 AC 137 ms
41,252 KB
testcase_29 AC 161 ms
41,796 KB
testcase_30 AC 143 ms
41,500 KB
testcase_31 AC 142 ms
41,300 KB
testcase_32 AC 145 ms
41,412 KB
testcase_33 AC 884 ms
57,060 KB
testcase_34 AC 250 ms
45,920 KB
testcase_35 AC 295 ms
47,280 KB
testcase_36 AC 789 ms
52,648 KB
testcase_37 AC 693 ms
48,992 KB
testcase_38 AC 708 ms
50,152 KB
testcase_39 AC 224 ms
45,336 KB
testcase_40 AC 265 ms
45,780 KB
testcase_41 AC 755 ms
51,828 KB
testcase_42 AC 622 ms
48,108 KB
testcase_43 AC 840 ms
56,172 KB
testcase_44 AC 630 ms
48,012 KB
testcase_45 AC 581 ms
48,168 KB
testcase_46 AC 539 ms
47,900 KB
testcase_47 AC 377 ms
47,764 KB
testcase_48 AC 129 ms
41,088 KB
testcase_49 AC 128 ms
41,144 KB
testcase_50 AC 132 ms
41,164 KB
testcase_51 AC 129 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int h = sc.nextInt();
		while (0 < n-- && h > 1) {
		    h /= getGCD(h, Math.abs(sc.nextInt()));
		    
		}
		if (h == 1) {
		    System.out.println("YES");
		} else {
		    System.out.println("NO");
		}
	}
	
	static int getGCD(int x, int y) {
	    if (x % y == 0) {
	        return y;
	    } else {
	        return getGCD(y, x % y);
	    }
	}
}
0