結果

問題 No.1201 お菓子配り-4
ユーザー qumazakiqumazaki
提出日時 2020-08-30 01:49:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 818 ms / 4,000 ms
コード長 314 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 63,756 KB
最終ジャッジ日時 2024-11-14 17:48:40
合計ジャッジ時間 11,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
60,608 KB
testcase_01 AC 420 ms
62,076 KB
testcase_02 AC 582 ms
62,800 KB
testcase_03 AC 305 ms
61,208 KB
testcase_04 AC 172 ms
61,288 KB
testcase_05 AC 363 ms
63,580 KB
testcase_06 AC 93 ms
60,264 KB
testcase_07 AC 190 ms
61,720 KB
testcase_08 AC 489 ms
63,032 KB
testcase_09 AC 338 ms
63,188 KB
testcase_10 AC 50 ms
62,236 KB
testcase_11 AC 127 ms
62,272 KB
testcase_12 AC 660 ms
62,856 KB
testcase_13 AC 59 ms
60,404 KB
testcase_14 AC 52 ms
60,756 KB
testcase_15 AC 525 ms
62,432 KB
testcase_16 AC 191 ms
60,784 KB
testcase_17 AC 233 ms
61,760 KB
testcase_18 AC 75 ms
60,820 KB
testcase_19 AC 72 ms
61,080 KB
testcase_20 AC 38 ms
52,648 KB
testcase_21 AC 37 ms
53,280 KB
testcase_22 AC 38 ms
52,656 KB
testcase_23 AC 38 ms
52,452 KB
testcase_24 AC 38 ms
51,940 KB
testcase_25 AC 37 ms
52,820 KB
testcase_26 AC 38 ms
52,488 KB
testcase_27 AC 38 ms
52,740 KB
testcase_28 AC 38 ms
52,180 KB
testcase_29 AC 38 ms
53,212 KB
testcase_30 AC 817 ms
62,680 KB
testcase_31 AC 817 ms
63,756 KB
testcase_32 AC 817 ms
62,620 KB
testcase_33 AC 815 ms
63,640 KB
testcase_34 AC 818 ms
62,500 KB
testcase_35 AC 60 ms
61,432 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 = 1_000_000_007

ans = 0
for a in A:
    if(a==0):
        continue
    for b in B:
        gcd_num = gcd(a,b)
        ans += (a*(b+1))%mod - (b-gcd_num)
        ans %= mod

print(ans)
0