結果

問題 No.1201 お菓子配り-4
ユーザー 37zigen37zigen
提出日時 2020-08-30 07:53:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 996 ms / 4,000 ms
コード長 279 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 64,956 KB
最終ジャッジ日時 2024-11-14 17:56:01
合計ジャッジ時間 12,974 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
60,468 KB
testcase_01 AC 502 ms
62,508 KB
testcase_02 AC 706 ms
63,676 KB
testcase_03 AC 365 ms
61,304 KB
testcase_04 AC 202 ms
62,844 KB
testcase_05 AC 439 ms
63,604 KB
testcase_06 AC 102 ms
60,268 KB
testcase_07 AC 226 ms
62,884 KB
testcase_08 AC 536 ms
63,328 KB
testcase_09 AC 409 ms
63,328 KB
testcase_10 AC 51 ms
62,156 KB
testcase_11 AC 137 ms
61,112 KB
testcase_12 AC 796 ms
63,776 KB
testcase_13 AC 64 ms
62,052 KB
testcase_14 AC 54 ms
60,600 KB
testcase_15 AC 637 ms
64,112 KB
testcase_16 AC 224 ms
62,288 KB
testcase_17 AC 275 ms
63,088 KB
testcase_18 AC 81 ms
62,492 KB
testcase_19 AC 80 ms
61,460 KB
testcase_20 AC 37 ms
53,088 KB
testcase_21 AC 37 ms
52,868 KB
testcase_22 AC 37 ms
52,724 KB
testcase_23 AC 38 ms
52,528 KB
testcase_24 AC 38 ms
52,660 KB
testcase_25 AC 37 ms
52,120 KB
testcase_26 AC 37 ms
52,892 KB
testcase_27 AC 40 ms
52,204 KB
testcase_28 AC 40 ms
53,000 KB
testcase_29 AC 40 ms
52,936 KB
testcase_30 AC 995 ms
64,204 KB
testcase_31 AC 994 ms
64,012 KB
testcase_32 AC 996 ms
64,956 KB
testcase_33 AC 994 ms
63,484 KB
testcase_34 AC 993 ms
63,556 KB
testcase_35 AC 61 ms
62,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
MOD=10**9+7
N=int(input())
M=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ans=0
for a in A:
    for b in B:
        d=b//gcd(a,b)
        W=b
        H=W*a//b
        ans+=(H+1)*(W+1)-2*W+(W-1)//d
        ans%=MOD
print(ans)
0