結果

問題 No.1250 汝は倍数なりや?
ユーザー momoyuumomoyuu
提出日時 2022-08-03 03:10:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 343 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 107,564 KB
最終ジャッジ日時 2024-07-23 21:16:49
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,336 KB
testcase_01 AC 38 ms
52,156 KB
testcase_02 AC 38 ms
52,892 KB
testcase_03 AC 39 ms
53,428 KB
testcase_04 AC 39 ms
52,348 KB
testcase_05 AC 38 ms
52,928 KB
testcase_06 AC 38 ms
53,072 KB
testcase_07 AC 38 ms
52,456 KB
testcase_08 AC 39 ms
53,204 KB
testcase_09 AC 39 ms
52,428 KB
testcase_10 AC 39 ms
53,424 KB
testcase_11 AC 39 ms
51,816 KB
testcase_12 AC 39 ms
52,868 KB
testcase_13 AC 38 ms
52,152 KB
testcase_14 AC 38 ms
52,320 KB
testcase_15 AC 39 ms
52,568 KB
testcase_16 AC 40 ms
52,872 KB
testcase_17 AC 39 ms
53,008 KB
testcase_18 AC 39 ms
52,440 KB
testcase_19 AC 38 ms
53,316 KB
testcase_20 AC 38 ms
52,524 KB
testcase_21 AC 39 ms
53,368 KB
testcase_22 AC 39 ms
52,308 KB
testcase_23 AC 58 ms
64,980 KB
testcase_24 AC 56 ms
64,416 KB
testcase_25 AC 52 ms
63,036 KB
testcase_26 AC 38 ms
53,136 KB
testcase_27 AC 54 ms
63,960 KB
testcase_28 AC 40 ms
53,256 KB
testcase_29 AC 47 ms
60,660 KB
testcase_30 AC 43 ms
59,024 KB
testcase_31 AC 40 ms
53,476 KB
testcase_32 AC 41 ms
59,764 KB
testcase_33 AC 193 ms
107,564 KB
testcase_34 AC 116 ms
90,900 KB
testcase_35 AC 152 ms
100,900 KB
testcase_36 AC 175 ms
104,328 KB
testcase_37 AC 146 ms
90,180 KB
testcase_38 AC 152 ms
92,576 KB
testcase_39 AC 128 ms
90,412 KB
testcase_40 AC 130 ms
90,484 KB
testcase_41 AC 170 ms
95,264 KB
testcase_42 AC 122 ms
85,504 KB
testcase_43 AC 191 ms
104,304 KB
testcase_44 AC 161 ms
85,268 KB
testcase_45 AC 144 ms
104,108 KB
testcase_46 AC 140 ms
81,468 KB
testcase_47 AC 139 ms
92,416 KB
testcase_48 AC 38 ms
53,568 KB
testcase_49 AC 38 ms
52,492 KB
testcase_50 AC 39 ms
52,216 KB
testcase_51 AC 38 ms
52,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,H = map(int,input().split())
A = list(map(int,input().split()))
def gcd(x,y):
    """
    最大公約数を求める。
    O(log(min(x,y)))
    """

    if x<y:
        x,y = y,x
    if y == 0:
        return x
    return gcd(y,x%y)

for i in range(N):
    a = gcd(abs(A[i]),H)
    H //= a
if H == 1:
    print("YES")
else:
    print("NO")
0