結果

問題 No.1201 お菓子配り-4
ユーザー ayaoniayaoni
提出日時 2020-11-26 20:27:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 809 ms / 4,000 ms
コード長 356 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 64,652 KB
最終ジャッジ日時 2024-07-23 20:56:44
合計ジャッジ時間 11,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
60,076 KB
testcase_01 AC 414 ms
62,152 KB
testcase_02 AC 575 ms
63,148 KB
testcase_03 AC 299 ms
61,824 KB
testcase_04 AC 167 ms
61,928 KB
testcase_05 AC 359 ms
62,836 KB
testcase_06 AC 93 ms
60,940 KB
testcase_07 AC 188 ms
63,640 KB
testcase_08 AC 443 ms
64,368 KB
testcase_09 AC 338 ms
63,692 KB
testcase_10 AC 50 ms
61,984 KB
testcase_11 AC 122 ms
62,020 KB
testcase_12 AC 642 ms
63,512 KB
testcase_13 AC 59 ms
60,244 KB
testcase_14 AC 53 ms
61,192 KB
testcase_15 AC 529 ms
63,072 KB
testcase_16 AC 188 ms
61,772 KB
testcase_17 AC 229 ms
61,620 KB
testcase_18 AC 75 ms
62,088 KB
testcase_19 AC 72 ms
60,628 KB
testcase_20 AC 38 ms
52,592 KB
testcase_21 AC 38 ms
53,132 KB
testcase_22 AC 37 ms
53,984 KB
testcase_23 AC 38 ms
53,012 KB
testcase_24 AC 38 ms
52,856 KB
testcase_25 AC 38 ms
52,408 KB
testcase_26 AC 38 ms
52,956 KB
testcase_27 AC 38 ms
52,436 KB
testcase_28 AC 39 ms
52,196 KB
testcase_29 AC 38 ms
53,212 KB
testcase_30 AC 809 ms
62,816 KB
testcase_31 AC 805 ms
63,120 KB
testcase_32 AC 800 ms
64,652 KB
testcase_33 AC 801 ms
63,464 KB
testcase_34 AC 783 ms
63,412 KB
testcase_35 AC 70 ms
62,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N,M = I(),I()
A,B = LI(),LI()
mod = 10**9+7
ans = 0
for i in range(N):
    a = A[i]
    for j in range(M):
        b = B[j]
        g = gcd(a,b)
        ans += a*b+a-b+g
        ans %= mod

print(ans)
0