結果

問題 No.1250 汝は倍数なりや?
ユーザー raven7959raven7959
提出日時 2021-08-22 10:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 167 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 107,824 KB
最終ジャッジ日時 2024-11-06 07:11:45
合計ジャッジ時間 5,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,556 KB
testcase_01 AC 38 ms
53,116 KB
testcase_02 AC 39 ms
52,808 KB
testcase_03 AC 38 ms
53,052 KB
testcase_04 AC 38 ms
53,348 KB
testcase_05 AC 38 ms
53,080 KB
testcase_06 AC 38 ms
52,388 KB
testcase_07 AC 38 ms
53,184 KB
testcase_08 AC 39 ms
52,880 KB
testcase_09 AC 39 ms
53,452 KB
testcase_10 AC 38 ms
52,616 KB
testcase_11 AC 38 ms
52,936 KB
testcase_12 AC 39 ms
54,024 KB
testcase_13 AC 39 ms
52,576 KB
testcase_14 AC 38 ms
53,552 KB
testcase_15 AC 39 ms
53,620 KB
testcase_16 AC 39 ms
52,868 KB
testcase_17 AC 39 ms
52,552 KB
testcase_18 AC 38 ms
52,240 KB
testcase_19 AC 39 ms
53,848 KB
testcase_20 AC 38 ms
53,072 KB
testcase_21 AC 38 ms
52,872 KB
testcase_22 AC 38 ms
53,144 KB
testcase_23 AC 40 ms
52,724 KB
testcase_24 AC 39 ms
53,268 KB
testcase_25 AC 39 ms
53,080 KB
testcase_26 AC 40 ms
53,116 KB
testcase_27 AC 39 ms
53,128 KB
testcase_28 AC 39 ms
52,380 KB
testcase_29 AC 40 ms
53,964 KB
testcase_30 AC 39 ms
53,544 KB
testcase_31 AC 38 ms
53,736 KB
testcase_32 AC 39 ms
53,688 KB
testcase_33 AC 135 ms
107,824 KB
testcase_34 AC 85 ms
84,752 KB
testcase_35 AC 114 ms
100,244 KB
testcase_36 AC 126 ms
104,600 KB
testcase_37 AC 92 ms
85,392 KB
testcase_38 AC 95 ms
87,664 KB
testcase_39 AC 86 ms
85,180 KB
testcase_40 AC 86 ms
85,688 KB
testcase_41 AC 102 ms
91,972 KB
testcase_42 AC 77 ms
77,232 KB
testcase_43 AC 126 ms
102,948 KB
testcase_44 AC 77 ms
78,216 KB
testcase_45 AC 124 ms
104,524 KB
testcase_46 AC 69 ms
72,272 KB
testcase_47 AC 93 ms
88,888 KB
testcase_48 AC 39 ms
52,572 KB
testcase_49 AC 40 ms
52,872 KB
testcase_50 AC 39 ms
53,508 KB
testcase_51 AC 39 ms
52,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N,H=map(int,input().split())
A=list(map(int,input().split()))
for a in A:
    g=gcd(a,H)
    H//=g
if H==1:
    print("YES")
else:
    print("NO")
0