結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,808 KB
testcase_01 AC 40 ms
52,876 KB
testcase_02 AC 39 ms
52,440 KB
testcase_03 AC 37 ms
52,936 KB
testcase_04 AC 36 ms
52,776 KB
testcase_05 AC 37 ms
54,036 KB
testcase_06 AC 39 ms
52,128 KB
testcase_07 AC 38 ms
52,348 KB
testcase_08 AC 38 ms
53,008 KB
testcase_09 AC 36 ms
52,536 KB
testcase_10 AC 36 ms
53,072 KB
testcase_11 AC 36 ms
53,352 KB
testcase_12 AC 36 ms
52,656 KB
testcase_13 AC 36 ms
53,468 KB
testcase_14 AC 38 ms
52,512 KB
testcase_15 AC 37 ms
53,716 KB
testcase_16 AC 39 ms
53,180 KB
testcase_17 AC 38 ms
52,588 KB
testcase_18 AC 38 ms
53,188 KB
testcase_19 AC 38 ms
53,680 KB
testcase_20 AC 37 ms
53,552 KB
testcase_21 AC 36 ms
52,676 KB
testcase_22 AC 35 ms
53,600 KB
testcase_23 AC 37 ms
52,596 KB
testcase_24 AC 37 ms
53,764 KB
testcase_25 AC 38 ms
53,960 KB
testcase_26 AC 38 ms
54,088 KB
testcase_27 AC 37 ms
53,976 KB
testcase_28 AC 36 ms
53,112 KB
testcase_29 AC 36 ms
53,820 KB
testcase_30 AC 35 ms
54,044 KB
testcase_31 AC 36 ms
52,408 KB
testcase_32 AC 37 ms
53,056 KB
testcase_33 AC 132 ms
107,696 KB
testcase_34 AC 78 ms
84,932 KB
testcase_35 AC 109 ms
100,136 KB
testcase_36 AC 122 ms
104,860 KB
testcase_37 AC 87 ms
86,088 KB
testcase_38 AC 97 ms
88,544 KB
testcase_39 AC 82 ms
85,392 KB
testcase_40 AC 79 ms
85,432 KB
testcase_41 AC 98 ms
91,864 KB
testcase_42 AC 71 ms
78,064 KB
testcase_43 AC 118 ms
103,164 KB
testcase_44 AC 69 ms
78,032 KB
testcase_45 AC 113 ms
104,744 KB
testcase_46 AC 61 ms
72,964 KB
testcase_47 AC 84 ms
89,064 KB
testcase_48 AC 37 ms
52,716 KB
testcase_49 AC 36 ms
53,400 KB
testcase_50 AC 36 ms
52,740 KB
testcase_51 AC 37 ms
53,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd

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

if 0 in A:
    print("YES")
    sys.exit()
    
for a in A:
    G=gcd(a,H)
    H//=G

if H==1:
    print("YES")
else:
    print("NO")
    
0