結果

問題 No.1201 お菓子配り-4
ユーザー chineristACchineristAC
提出日時 2020-08-28 22:00:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 835 ms / 4,000 ms
コード長 326 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 64,976 KB
最終ジャッジ日時 2024-11-14 00:31:56
合計ジャッジ時間 11,212 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
61,116 KB
testcase_01 AC 426 ms
64,024 KB
testcase_02 AC 593 ms
64,004 KB
testcase_03 AC 313 ms
62,896 KB
testcase_04 AC 173 ms
62,616 KB
testcase_05 AC 367 ms
63,328 KB
testcase_06 AC 90 ms
61,380 KB
testcase_07 AC 189 ms
62,576 KB
testcase_08 AC 452 ms
63,624 KB
testcase_09 AC 346 ms
63,168 KB
testcase_10 AC 47 ms
62,944 KB
testcase_11 AC 120 ms
62,464 KB
testcase_12 AC 666 ms
63,008 KB
testcase_13 AC 61 ms
62,944 KB
testcase_14 AC 49 ms
60,000 KB
testcase_15 AC 532 ms
63,776 KB
testcase_16 AC 194 ms
63,232 KB
testcase_17 AC 233 ms
61,580 KB
testcase_18 AC 76 ms
62,144 KB
testcase_19 AC 71 ms
62,576 KB
testcase_20 AC 36 ms
52,868 KB
testcase_21 AC 35 ms
52,408 KB
testcase_22 AC 34 ms
53,996 KB
testcase_23 AC 35 ms
53,176 KB
testcase_24 AC 34 ms
52,748 KB
testcase_25 AC 35 ms
53,068 KB
testcase_26 AC 34 ms
52,336 KB
testcase_27 AC 35 ms
53,336 KB
testcase_28 AC 36 ms
52,660 KB
testcase_29 AC 35 ms
52,212 KB
testcase_30 AC 824 ms
63,936 KB
testcase_31 AC 823 ms
63,964 KB
testcase_32 AC 829 ms
63,800 KB
testcase_33 AC 835 ms
64,976 KB
testcase_34 AC 833 ms
63,780 KB
testcase_35 AC 257 ms
63,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N = int(input())
M = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

mod = 10**9+7
res = 0

for j in range(M):
    for i in range(N):
        g = gcd(A[i],B[j])

        res += A[i] * (B[j]+1)
        res %= mod

        res -= (B[j]-g)
        res %= mod

print(res)
0