結果

問題 No.1250 汝は倍数なりや?
ユーザー gorugo30gorugo30
提出日時 2021-02-25 17:36:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 1,000 ms
コード長 276 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,688 KB
実行使用メモリ 107,280 KB
最終ジャッジ日時 2024-10-01 07:54:52
合計ジャッジ時間 5,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,192 KB
testcase_01 AC 38 ms
53,556 KB
testcase_02 AC 36 ms
51,888 KB
testcase_03 AC 35 ms
53,656 KB
testcase_04 AC 37 ms
52,404 KB
testcase_05 AC 34 ms
52,624 KB
testcase_06 AC 35 ms
52,820 KB
testcase_07 AC 36 ms
51,744 KB
testcase_08 AC 36 ms
53,076 KB
testcase_09 AC 36 ms
51,816 KB
testcase_10 AC 36 ms
53,132 KB
testcase_11 AC 36 ms
52,984 KB
testcase_12 AC 36 ms
52,748 KB
testcase_13 AC 37 ms
52,424 KB
testcase_14 AC 36 ms
52,624 KB
testcase_15 AC 35 ms
52,344 KB
testcase_16 AC 36 ms
52,404 KB
testcase_17 AC 35 ms
52,236 KB
testcase_18 AC 35 ms
52,700 KB
testcase_19 AC 36 ms
52,688 KB
testcase_20 AC 36 ms
51,872 KB
testcase_21 AC 35 ms
52,232 KB
testcase_22 AC 35 ms
53,500 KB
testcase_23 AC 44 ms
60,896 KB
testcase_24 AC 46 ms
61,848 KB
testcase_25 AC 52 ms
65,608 KB
testcase_26 AC 38 ms
52,756 KB
testcase_27 AC 53 ms
63,716 KB
testcase_28 AC 39 ms
52,828 KB
testcase_29 AC 46 ms
59,720 KB
testcase_30 AC 41 ms
59,624 KB
testcase_31 AC 40 ms
58,080 KB
testcase_32 AC 41 ms
58,224 KB
testcase_33 AC 212 ms
107,280 KB
testcase_34 AC 103 ms
90,120 KB
testcase_35 AC 126 ms
100,720 KB
testcase_36 AC 165 ms
104,188 KB
testcase_37 AC 176 ms
90,632 KB
testcase_38 AC 189 ms
92,720 KB
testcase_39 AC 118 ms
90,000 KB
testcase_40 AC 135 ms
89,960 KB
testcase_41 AC 154 ms
94,488 KB
testcase_42 AC 113 ms
85,372 KB
testcase_43 AC 222 ms
103,628 KB
testcase_44 AC 113 ms
85,224 KB
testcase_45 AC 145 ms
104,232 KB
testcase_46 AC 125 ms
81,796 KB
testcase_47 AC 115 ms
92,452 KB
testcase_48 AC 38 ms
52,892 KB
testcase_49 AC 36 ms
53,264 KB
testcase_50 AC 36 ms
52,208 KB
testcase_51 AC 36 ms
51,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    if b == 0:
        return a
    return gcd(b, a % b)
N, H = map(int, input().split())
A = list(map(int, input().split()))
if 0 in A:
    print("YES")
    exit()
for i in range(N):
    H //= gcd(H, abs(A[i]))
if H == 1:
    print("YES")
else:
    print("NO")
0