結果

問題 No.2811 Calculation Within Sequence
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-08 11:14:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 132,064 KB
最終ジャッジ日時 2024-07-08 12:14:38
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
131,400 KB
testcase_01 AC 150 ms
131,116 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 155 ms
131,268 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 154 ms
131,160 KB
testcase_09 AC 141 ms
130,904 KB
testcase_10 WA -
testcase_11 AC 139 ms
131,400 KB
testcase_12 AC 163 ms
131,404 KB
testcase_13 AC 140 ms
131,280 KB
testcase_14 AC 123 ms
131,436 KB
testcase_15 AC 157 ms
131,284 KB
testcase_16 AC 157 ms
131,260 KB
testcase_17 AC 152 ms
131,200 KB
testcase_18 WA -
testcase_19 AC 123 ms
131,312 KB
testcase_20 AC 125 ms
131,840 KB
testcase_21 WA -
testcase_22 AC 55 ms
79,800 KB
testcase_23 AC 65 ms
84,688 KB
testcase_24 AC 112 ms
97,980 KB
testcase_25 AC 49 ms
69,408 KB
testcase_26 WA -
testcase_27 AC 99 ms
96,636 KB
testcase_28 AC 101 ms
104,064 KB
testcase_29 WA -
testcase_30 AC 96 ms
98,736 KB
testcase_31 WA -
testcase_32 AC 68 ms
87,728 KB
testcase_33 AC 97 ms
98,020 KB
testcase_34 WA -
testcase_35 AC 80 ms
98,600 KB
testcase_36 AC 75 ms
96,188 KB
testcase_37 WA -
testcase_38 AC 84 ms
98,096 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a,b=map(int,input().split())
t=list(map(int,input().split()))
s=list(map(int,input().split()))
g=t[0]
for i in t:
	g=gcd(g,i)
sg=s[0]
for i in s:
	sg=gcd(sg,i)
ans="Yes"
if g!=sg:
	ans="No"
print(ans)
0