結果

問題 No.2811 Calculation Within Sequence
ユーザー rlangevinrlangevin
提出日時 2024-07-19 21:23:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 132,224 KB
最終ジャッジ日時 2024-07-19 21:23:44
合計ジャッジ時間 8,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
52,212 KB
testcase_03 AC 178 ms
131,424 KB
testcase_04 AC 194 ms
131,508 KB
testcase_05 AC 168 ms
131,532 KB
testcase_06 AC 180 ms
131,468 KB
testcase_07 AC 198 ms
131,024 KB
testcase_08 AC 177 ms
131,476 KB
testcase_09 AC 177 ms
131,404 KB
testcase_10 AC 177 ms
131,424 KB
testcase_11 AC 188 ms
131,420 KB
testcase_12 AC 175 ms
131,164 KB
testcase_13 AC 163 ms
131,444 KB
testcase_14 AC 169 ms
131,320 KB
testcase_15 AC 196 ms
131,476 KB
testcase_16 AC 172 ms
131,472 KB
testcase_17 AC 155 ms
131,556 KB
testcase_18 AC 192 ms
131,396 KB
testcase_19 AC 191 ms
131,300 KB
testcase_20 AC 187 ms
131,460 KB
testcase_21 AC 158 ms
131,712 KB
testcase_22 AC 148 ms
131,496 KB
testcase_23 AC 164 ms
132,224 KB
testcase_24 AC 134 ms
107,392 KB
testcase_25 AC 65 ms
79,360 KB
testcase_26 AC 73 ms
83,200 KB
testcase_27 AC 134 ms
98,096 KB
testcase_28 AC 64 ms
68,608 KB
testcase_29 AC 113 ms
99,200 KB
testcase_30 AC 121 ms
96,916 KB
testcase_31 AC 126 ms
103,916 KB
testcase_32 AC 58 ms
72,320 KB
testcase_33 AC 115 ms
99,312 KB
testcase_34 AC 110 ms
100,516 KB
testcase_35 AC 103 ms
88,008 KB
testcase_36 AC 113 ms
98,432 KB
testcase_37 AC 80 ms
93,268 KB
testcase_38 AC 97 ms
98,816 KB
testcase_39 AC 86 ms
96,512 KB
testcase_40 AC 106 ms
107,160 KB
testcase_41 AC 102 ms
98,236 KB
testcase_42 AC 74 ms
87,424 KB
testcase_43 AC 89 ms
98,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

a, b = map(int, input().split())
T = list(map(int, input().split()))
S = list(map(int, input().split()))
gt = T[0]
for i in range(a):
    gt = gcd(gt, T[i])
gs = S[0]
for i in range(b):
    gs = gcd(gs, S[i])
     
print("Yes") if gs % gt == 0 else print("No")
    
0