結果

問題 No.2811 Calculation Within Sequence
ユーザー PNJPNJ
提出日時 2024-07-19 22:26:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 131,996 KB
最終ジャッジ日時 2024-07-19 22:26:22
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 153 ms
131,592 KB
testcase_04 AC 157 ms
131,936 KB
testcase_05 AC 150 ms
131,708 KB
testcase_06 AC 152 ms
131,400 KB
testcase_07 AC 158 ms
131,460 KB
testcase_08 AC 155 ms
131,580 KB
testcase_09 AC 146 ms
131,272 KB
testcase_10 AC 155 ms
131,576 KB
testcase_11 AC 155 ms
131,716 KB
testcase_12 AC 157 ms
131,700 KB
testcase_13 AC 157 ms
131,544 KB
testcase_14 AC 156 ms
131,560 KB
testcase_15 AC 155 ms
131,104 KB
testcase_16 AC 155 ms
131,708 KB
testcase_17 AC 155 ms
131,992 KB
testcase_18 AC 149 ms
131,404 KB
testcase_19 AC 157 ms
131,328 KB
testcase_20 AC 165 ms
131,540 KB
testcase_21 AC 154 ms
131,416 KB
testcase_22 AC 153 ms
131,988 KB
testcase_23 AC 155 ms
131,996 KB
testcase_24 AC 100 ms
107,520 KB
testcase_25 AC 69 ms
79,872 KB
testcase_26 AC 68 ms
83,840 KB
testcase_27 AC 111 ms
98,148 KB
testcase_28 AC 52 ms
68,992 KB
testcase_29 AC 89 ms
99,264 KB
testcase_30 AC 95 ms
97,068 KB
testcase_31 AC 103 ms
104,108 KB
testcase_32 AC 56 ms
72,576 KB
testcase_33 AC 98 ms
99,072 KB
testcase_34 AC 102 ms
100,720 KB
testcase_35 AC 73 ms
88,320 KB
testcase_36 AC 90 ms
98,168 KB
testcase_37 AC 80 ms
95,104 KB
testcase_38 AC 90 ms
98,720 KB
testcase_39 AC 88 ms
96,896 KB
testcase_40 AC 99 ms
107,264 KB
testcase_41 AC 101 ms
98,188 KB
testcase_42 AC 78 ms
87,936 KB
testcase_43 AC 94 ms
98,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
  while a != 0:
    b %= a
    if b == 0: return a
    a %= b
  return b

a,b = map(int,input().split())
T = list(map(int,input().split()))
S = list(map(int,input().split()))
g = 0
gg = 0
for i in range(a):
  g = gcd(g,T[i])
for i in range(b):
  gg = gcd(gg,S[i])
ans = 'No'
if gg % g == 0:
  ans = 'Yes'
print(ans)
0