結果

問題 No.1250 汝は倍数なりや?
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2023-07-03 20:57:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 248 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 107,564 KB
最終ジャッジ日時 2024-07-17 18:51:32
合計ジャッジ時間 5,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,156 KB
testcase_01 AC 33 ms
52,324 KB
testcase_02 AC 33 ms
52,472 KB
testcase_03 AC 36 ms
52,740 KB
testcase_04 AC 36 ms
52,556 KB
testcase_05 AC 33 ms
52,920 KB
testcase_06 AC 33 ms
52,856 KB
testcase_07 AC 33 ms
53,136 KB
testcase_08 AC 32 ms
52,000 KB
testcase_09 AC 32 ms
53,384 KB
testcase_10 AC 41 ms
52,692 KB
testcase_11 AC 34 ms
53,272 KB
testcase_12 AC 32 ms
52,068 KB
testcase_13 AC 35 ms
52,948 KB
testcase_14 AC 33 ms
52,500 KB
testcase_15 AC 33 ms
53,252 KB
testcase_16 AC 32 ms
53,160 KB
testcase_17 AC 34 ms
53,564 KB
testcase_18 AC 32 ms
52,444 KB
testcase_19 AC 34 ms
53,176 KB
testcase_20 AC 32 ms
53,628 KB
testcase_21 AC 37 ms
52,772 KB
testcase_22 AC 36 ms
52,264 KB
testcase_23 AC 40 ms
60,044 KB
testcase_24 AC 36 ms
59,224 KB
testcase_25 AC 38 ms
60,172 KB
testcase_26 AC 32 ms
52,944 KB
testcase_27 AC 38 ms
59,836 KB
testcase_28 AC 43 ms
54,244 KB
testcase_29 AC 39 ms
59,576 KB
testcase_30 AC 45 ms
60,552 KB
testcase_31 AC 38 ms
58,532 KB
testcase_32 AC 49 ms
59,600 KB
testcase_33 AC 144 ms
107,564 KB
testcase_34 AC 76 ms
90,348 KB
testcase_35 AC 100 ms
101,484 KB
testcase_36 AC 132 ms
104,028 KB
testcase_37 AC 108 ms
91,192 KB
testcase_38 AC 109 ms
93,288 KB
testcase_39 AC 76 ms
90,608 KB
testcase_40 AC 80 ms
90,748 KB
testcase_41 AC 129 ms
95,452 KB
testcase_42 AC 90 ms
85,416 KB
testcase_43 AC 146 ms
103,876 KB
testcase_44 AC 85 ms
85,704 KB
testcase_45 AC 110 ms
104,308 KB
testcase_46 AC 80 ms
81,768 KB
testcase_47 AC 83 ms
92,936 KB
testcase_48 AC 35 ms
51,760 KB
testcase_49 AC 34 ms
52,356 KB
testcase_50 AC 34 ms
53,564 KB
testcase_51 AC 34 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while min(a, b) > 0:
        a, b = max(a, b), min(a, b)
        a %= b
    return max(a, b)


(n, h), a = [[*map(int, input().split())] for _ in range(2)]
for ai in a:
    h //= gcd(h, abs(ai))

print("YES" if h == 1 else "NO")
0