結果

問題 No.1250 汝は倍数なりや?
ユーザー akitsugu777akitsugu777
提出日時 2020-12-14 15:44:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,284 KB
最終ジャッジ日時 2024-09-20 00:45:28
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 27 ms
10,624 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 27 ms
10,624 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 WA -
testcase_16 AC 26 ms
10,880 KB
testcase_17 WA -
testcase_18 AC 27 ms
10,752 KB
testcase_19 WA -
testcase_20 AC 27 ms
10,752 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 26 ms
10,624 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 27 ms
10,880 KB
testcase_28 AC 28 ms
10,880 KB
testcase_29 WA -
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 26 ms
10,752 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 148 ms
28,528 KB
testcase_36 AC 159 ms
29,320 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 80 ms
18,272 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 168 ms
29,532 KB
testcase_46 AC 66 ms
16,088 KB
testcase_47 WA -
testcase_48 AC 27 ms
10,624 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N, H = map(int, input().split())
A = list(map(int, input().split()))

for a in A:
    X = math.gcd(H, a)

print(['NO', 'YES'][X == 1])
0