結果

問題 No.1201 お菓子配り-4
ユーザー tamatotamato
提出日時 2020-08-28 22:50:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,019 ms / 4,000 ms
コード長 630 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,684 KB
実行使用メモリ 63,796 KB
最終ジャッジ日時 2024-11-14 01:42:55
合計ジャッジ時間 13,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
61,812 KB
testcase_01 AC 514 ms
62,824 KB
testcase_02 AC 723 ms
63,496 KB
testcase_03 AC 376 ms
62,144 KB
testcase_04 AC 206 ms
61,928 KB
testcase_05 AC 444 ms
61,932 KB
testcase_06 AC 104 ms
60,832 KB
testcase_07 AC 224 ms
63,252 KB
testcase_08 AC 549 ms
61,964 KB
testcase_09 AC 415 ms
62,444 KB
testcase_10 AC 48 ms
61,740 KB
testcase_11 AC 142 ms
62,664 KB
testcase_12 AC 817 ms
63,092 KB
testcase_13 AC 65 ms
61,632 KB
testcase_14 AC 54 ms
61,896 KB
testcase_15 AC 651 ms
63,300 KB
testcase_16 AC 229 ms
62,408 KB
testcase_17 AC 281 ms
62,600 KB
testcase_18 AC 84 ms
62,208 KB
testcase_19 AC 80 ms
61,224 KB
testcase_20 AC 36 ms
53,072 KB
testcase_21 AC 37 ms
52,696 KB
testcase_22 AC 37 ms
53,632 KB
testcase_23 AC 36 ms
53,616 KB
testcase_24 AC 36 ms
53,128 KB
testcase_25 AC 37 ms
53,928 KB
testcase_26 AC 38 ms
54,684 KB
testcase_27 AC 37 ms
52,532 KB
testcase_28 AC 38 ms
52,856 KB
testcase_29 AC 36 ms
53,796 KB
testcase_30 AC 1,015 ms
62,748 KB
testcase_31 AC 1,019 ms
63,592 KB
testcase_32 AC 1,018 ms
63,248 KB
testcase_33 AC 1,017 ms
63,724 KB
testcase_34 AC 1,015 ms
62,828 KB
testcase_35 AC 502 ms
63,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from math import gcd
    input = sys.stdin.readline

    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:
            c, d = divmod(a, b)
            ans = (ans + ((c * b)%mod * (b+1))%mod)%mod
            if d != 0:
                ans = (ans + (d*2))%mod
                ans = (ans + ((d-1) * (b-1))%mod)%mod

                bb = b // gcd(b, d)
                ans = (ans + (b-1) // bb)%mod
    print(ans)


if __name__ == '__main__':
    main()
0