結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,040 KB
testcase_01 AC 119 ms
41,284 KB
testcase_02 AC 102 ms
39,636 KB
testcase_03 AC 110 ms
39,880 KB
testcase_04 AC 123 ms
41,148 KB
testcase_05 AC 114 ms
39,952 KB
testcase_06 AC 121 ms
41,044 KB
testcase_07 AC 116 ms
41,064 KB
testcase_08 AC 118 ms
40,320 KB
testcase_09 AC 123 ms
41,088 KB
testcase_10 AC 108 ms
40,008 KB
testcase_11 AC 111 ms
40,344 KB
testcase_12 AC 120 ms
41,188 KB
testcase_13 AC 121 ms
41,072 KB
testcase_14 AC 125 ms
41,208 KB
testcase_15 AC 122 ms
41,324 KB
testcase_16 AC 114 ms
40,076 KB
testcase_17 AC 120 ms
41,288 KB
testcase_18 AC 125 ms
41,256 KB
testcase_19 AC 119 ms
40,904 KB
testcase_20 AC 125 ms
41,164 KB
testcase_21 RE -
testcase_22 AC 108 ms
39,440 KB
testcase_23 AC 183 ms
42,236 KB
testcase_24 AC 178 ms
42,072 KB
testcase_25 AC 176 ms
41,932 KB
testcase_26 AC 121 ms
40,960 KB
testcase_27 AC 173 ms
42,000 KB
testcase_28 AC 114 ms
40,232 KB
testcase_29 AC 160 ms
41,472 KB
testcase_30 AC 130 ms
41,396 KB
testcase_31 AC 134 ms
41,552 KB
testcase_32 AC 133 ms
41,508 KB
testcase_33 AC 873 ms
57,140 KB
testcase_34 AC 235 ms
46,060 KB
testcase_35 AC 276 ms
46,916 KB
testcase_36 AC 729 ms
53,120 KB
testcase_37 AC 619 ms
49,136 KB
testcase_38 AC 637 ms
50,112 KB
testcase_39 AC 203 ms
45,260 KB
testcase_40 AC 236 ms
45,744 KB
testcase_41 AC 725 ms
51,916 KB
testcase_42 AC 475 ms
46,468 KB
testcase_43 AC 808 ms
53,692 KB
testcase_44 AC 569 ms
47,856 KB
testcase_45 AC 475 ms
47,248 KB
testcase_46 AC 511 ms
48,096 KB
testcase_47 AC 330 ms
47,076 KB
testcase_48 AC 117 ms
41,296 KB
testcase_49 AC 121 ms
41,064 KB
testcase_50 AC 116 ms
41,008 KB
testcase_51 AC 119 ms
40,948 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) {
		    int x = sc.nextInt();
		    if (x == 1) {
		        h = 1;
		        break;
		    }
		    h /= getGCD(h, Math.abs(x));
		    
		}
		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