結果

問題 No.1250 汝は倍数なりや?
ユーザー 👑 KazunKazun
提出日時 2020-08-14 19:41:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 205 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 107,536 KB
最終ジャッジ日時 2024-04-23 06:47:49
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,016 KB
testcase_01 AC 40 ms
52,448 KB
testcase_02 AC 37 ms
52,072 KB
testcase_03 AC 42 ms
52,684 KB
testcase_04 AC 41 ms
53,532 KB
testcase_05 AC 41 ms
52,552 KB
testcase_06 AC 41 ms
53,392 KB
testcase_07 AC 40 ms
52,500 KB
testcase_08 AC 43 ms
52,952 KB
testcase_09 AC 40 ms
52,312 KB
testcase_10 AC 40 ms
53,684 KB
testcase_11 AC 40 ms
53,456 KB
testcase_12 AC 40 ms
52,748 KB
testcase_13 AC 40 ms
52,816 KB
testcase_14 AC 41 ms
52,576 KB
testcase_15 AC 40 ms
52,524 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 40 ms
52,652 KB
testcase_18 AC 40 ms
52,944 KB
testcase_19 AC 38 ms
52,984 KB
testcase_20 AC 40 ms
53,304 KB
testcase_21 AC 39 ms
52,376 KB
testcase_22 AC 40 ms
53,180 KB
testcase_23 AC 38 ms
53,616 KB
testcase_24 AC 41 ms
54,484 KB
testcase_25 AC 39 ms
54,004 KB
testcase_26 AC 42 ms
53,264 KB
testcase_27 AC 40 ms
52,776 KB
testcase_28 AC 38 ms
52,528 KB
testcase_29 AC 40 ms
53,452 KB
testcase_30 AC 40 ms
52,980 KB
testcase_31 AC 43 ms
53,488 KB
testcase_32 AC 40 ms
53,624 KB
testcase_33 AC 167 ms
107,536 KB
testcase_34 AC 80 ms
84,972 KB
testcase_35 AC 106 ms
101,124 KB
testcase_36 AC 139 ms
105,900 KB
testcase_37 AC 107 ms
87,652 KB
testcase_38 AC 109 ms
89,156 KB
testcase_39 AC 83 ms
84,956 KB
testcase_40 AC 79 ms
84,980 KB
testcase_41 AC 115 ms
94,744 KB
testcase_42 AC 80 ms
78,484 KB
testcase_43 AC 153 ms
105,820 KB
testcase_44 AC 85 ms
79,820 KB
testcase_45 AC 127 ms
106,260 KB
testcase_46 AC 74 ms
73,408 KB
testcase_47 AC 84 ms
87,968 KB
testcase_48 AC 38 ms
52,880 KB
testcase_49 AC 40 ms
52,872 KB
testcase_50 AC 40 ms
53,200 KB
testcase_51 AC 36 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd

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

for a in A:
    G=gcd(a,H)
    H//=G

    if H==1:
        print("YES")
        exit()

print("NO")
0