結果

問題 No.1201 お菓子配り-4
ユーザー hotman78hotman78
提出日時 2020-08-22 08:47:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 819 ms / 4,000 ms
コード長 227 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 63,884 KB
最終ジャッジ日時 2024-11-07 13:20:51
合計ジャッジ時間 10,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
59,932 KB
testcase_01 AC 419 ms
62,160 KB
testcase_02 AC 583 ms
62,760 KB
testcase_03 AC 309 ms
61,828 KB
testcase_04 AC 172 ms
60,464 KB
testcase_05 AC 364 ms
63,128 KB
testcase_06 AC 92 ms
59,996 KB
testcase_07 AC 190 ms
62,592 KB
testcase_08 AC 446 ms
62,932 KB
testcase_09 AC 341 ms
63,428 KB
testcase_10 AC 49 ms
61,420 KB
testcase_11 AC 118 ms
60,484 KB
testcase_12 AC 657 ms
62,472 KB
testcase_13 AC 61 ms
61,520 KB
testcase_14 AC 54 ms
61,708 KB
testcase_15 AC 531 ms
63,600 KB
testcase_16 AC 190 ms
61,012 KB
testcase_17 AC 233 ms
61,764 KB
testcase_18 AC 75 ms
60,796 KB
testcase_19 AC 73 ms
60,768 KB
testcase_20 AC 36 ms
53,112 KB
testcase_21 AC 35 ms
53,260 KB
testcase_22 AC 35 ms
52,744 KB
testcase_23 AC 35 ms
52,000 KB
testcase_24 AC 35 ms
52,640 KB
testcase_25 AC 36 ms
52,456 KB
testcase_26 AC 36 ms
53,888 KB
testcase_27 AC 36 ms
52,240 KB
testcase_28 AC 35 ms
53,308 KB
testcase_29 AC 35 ms
53,232 KB
testcase_30 AC 815 ms
63,276 KB
testcase_31 AC 819 ms
62,660 KB
testcase_32 AC 818 ms
62,844 KB
testcase_33 AC 818 ms
63,884 KB
testcase_34 AC 817 ms
63,640 KB
testcase_35 AC 62 ms
61,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
MOD=1000000007
n=int(input())
m=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ans=0
for i in a:
    for j in b:
        ans=(ans+(i+1)*(j+1)+(math.gcd(i,j)+1)-2*(j+1))%MOD
print(ans)
0