結果

問題 No.1250 汝は倍数なりや?
ユーザー 遭難者遭難者
提出日時 2020-10-09 23:17:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 726 ms / 1,000 ms
コード長 545 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 51,172 KB
最終ジャッジ日時 2024-07-20 14:12:50
合計ジャッジ時間 15,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,280 KB
testcase_01 AC 106 ms
41,168 KB
testcase_02 AC 96 ms
39,876 KB
testcase_03 AC 105 ms
41,064 KB
testcase_04 AC 100 ms
40,080 KB
testcase_05 AC 97 ms
39,840 KB
testcase_06 AC 97 ms
39,988 KB
testcase_07 AC 99 ms
40,140 KB
testcase_08 AC 105 ms
41,140 KB
testcase_09 AC 93 ms
39,536 KB
testcase_10 AC 94 ms
39,888 KB
testcase_11 AC 111 ms
41,072 KB
testcase_12 AC 99 ms
40,124 KB
testcase_13 AC 110 ms
39,868 KB
testcase_14 AC 99 ms
39,892 KB
testcase_15 AC 109 ms
41,200 KB
testcase_16 AC 95 ms
40,116 KB
testcase_17 AC 107 ms
41,156 KB
testcase_18 AC 118 ms
41,396 KB
testcase_19 AC 108 ms
40,164 KB
testcase_20 AC 110 ms
40,996 KB
testcase_21 AC 108 ms
39,968 KB
testcase_22 AC 111 ms
40,972 KB
testcase_23 AC 133 ms
41,648 KB
testcase_24 AC 144 ms
41,592 KB
testcase_25 AC 154 ms
41,772 KB
testcase_26 AC 111 ms
41,300 KB
testcase_27 AC 148 ms
41,796 KB
testcase_28 AC 121 ms
41,412 KB
testcase_29 AC 142 ms
41,332 KB
testcase_30 AC 120 ms
41,164 KB
testcase_31 AC 119 ms
41,436 KB
testcase_32 AC 119 ms
41,484 KB
testcase_33 AC 662 ms
51,172 KB
testcase_34 AC 178 ms
44,284 KB
testcase_35 AC 214 ms
46,884 KB
testcase_36 AC 613 ms
49,632 KB
testcase_37 AC 492 ms
48,432 KB
testcase_38 AC 619 ms
48,568 KB
testcase_39 AC 171 ms
42,836 KB
testcase_40 AC 191 ms
44,380 KB
testcase_41 AC 650 ms
48,184 KB
testcase_42 AC 476 ms
48,280 KB
testcase_43 AC 726 ms
49,236 KB
testcase_44 AC 530 ms
48,320 KB
testcase_45 AC 454 ms
48,224 KB
testcase_46 AC 350 ms
48,580 KB
testcase_47 AC 259 ms
47,636 KB
testcase_48 AC 116 ms
41,336 KB
testcase_49 AC 117 ms
41,068 KB
testcase_50 AC 120 ms
41,200 KB
testcase_51 AC 99 ms
39,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int n = Integer.parseInt(sc.next());
		int h = Integer.parseInt(sc.next());
		for(int i = 0 ; h != 1 && i < n ; i++){
			int a = Integer.parseInt(sc.next());
			int p = a , q = h , z = p % q;
			while(z != 0){
				p = q;
				q = z;
				z = p % q;
			}
			h /= q;
		}
		if(h == 1) ou.println("YES");
		else ou.println("NO");
		ou.flush();
		sc.close();
	}
}
0