結果

問題 No.1201 お菓子配り-4
ユーザー tpynerivertpyneriver
提出日時 2020-08-28 22:44:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,977 ms / 4,000 ms
コード長 435 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,268 KB
最終ジャッジ日時 2024-11-14 01:38:05
合計ジャッジ時間 21,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
75,992 KB
testcase_01 AC 779 ms
76,004 KB
testcase_02 AC 1,089 ms
75,748 KB
testcase_03 AC 557 ms
76,248 KB
testcase_04 AC 297 ms
76,132 KB
testcase_05 AC 665 ms
75,764 KB
testcase_06 AC 142 ms
75,696 KB
testcase_07 AC 332 ms
75,952 KB
testcase_08 AC 823 ms
75,880 KB
testcase_09 AC 618 ms
75,900 KB
testcase_10 AC 55 ms
71,372 KB
testcase_11 AC 202 ms
75,852 KB
testcase_12 AC 1,231 ms
76,260 KB
testcase_13 AC 83 ms
76,020 KB
testcase_14 AC 65 ms
75,524 KB
testcase_15 AC 979 ms
75,844 KB
testcase_16 AC 334 ms
76,208 KB
testcase_17 AC 416 ms
75,788 KB
testcase_18 AC 110 ms
75,976 KB
testcase_19 AC 105 ms
75,716 KB
testcase_20 AC 36 ms
52,620 KB
testcase_21 AC 36 ms
52,472 KB
testcase_22 AC 36 ms
52,440 KB
testcase_23 AC 37 ms
51,940 KB
testcase_24 AC 36 ms
52,612 KB
testcase_25 AC 36 ms
52,880 KB
testcase_26 AC 37 ms
52,948 KB
testcase_27 AC 37 ms
52,004 KB
testcase_28 AC 37 ms
52,204 KB
testcase_29 AC 37 ms
53,004 KB
testcase_30 AC 1,542 ms
75,844 KB
testcase_31 AC 1,541 ms
75,928 KB
testcase_32 AC 1,535 ms
76,268 KB
testcase_33 AC 1,534 ms
76,240 KB
testcase_34 AC 1,533 ms
76,136 KB
testcase_35 AC 2,977 ms
75,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
MOD = 10**9+7

def gcd(a,b):
    while b:
        a, b = b, a%b
    return a

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

ans = 0
for a in A:
    for b in B:
        l = a//b
        ans = (ans + 2*l*b*(b+1)//2)%MOD
        k = a%b
        g = gcd(b, k)
        ans = (ans + 2*(k*(b+1)-b+g)//2)%MOD

print(ans)
        
0