結果

問題 No.1201 お菓子配り-4
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-01 17:12:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,200 ms / 4,000 ms
コード長 403 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-07 01:27:12
合計ジャッジ時間 27,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
10,752 KB
testcase_01 AC 1,028 ms
11,008 KB
testcase_02 AC 1,480 ms
11,008 KB
testcase_03 AC 733 ms
11,008 KB
testcase_04 AC 369 ms
11,008 KB
testcase_05 AC 917 ms
10,880 KB
testcase_06 AC 153 ms
10,752 KB
testcase_07 AC 422 ms
10,880 KB
testcase_08 AC 1,091 ms
10,880 KB
testcase_09 AC 812 ms
10,880 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 228 ms
10,752 KB
testcase_12 AC 1,695 ms
11,008 KB
testcase_13 AC 72 ms
10,880 KB
testcase_14 AC 49 ms
10,752 KB
testcase_15 AC 1,335 ms
11,008 KB
testcase_16 AC 419 ms
10,880 KB
testcase_17 AC 534 ms
10,880 KB
testcase_18 AC 106 ms
10,880 KB
testcase_19 AC 104 ms
10,880 KB
testcase_20 AC 24 ms
10,752 KB
testcase_21 AC 23 ms
10,752 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 26 ms
10,880 KB
testcase_25 AC 24 ms
10,752 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 24 ms
10,880 KB
testcase_28 AC 24 ms
10,880 KB
testcase_29 AC 25 ms
10,880 KB
testcase_30 AC 2,137 ms
11,008 KB
testcase_31 AC 2,113 ms
11,008 KB
testcase_32 AC 2,216 ms
11,136 KB
testcase_33 AC 2,153 ms
11,008 KB
testcase_34 AC 2,222 ms
11,136 KB
testcase_35 AC 3,200 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from math import gcd
    input = sys.stdin.readline
    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 i in a:
        for j in b:
            ans += (i - 1) * (j + 1) + gcd(i, j) + 1
            ans %= mod
    print(ans)
if __name__ == "__main__":
    main()
0