結果

問題 No.1201 お菓子配り-4
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-01 17:13:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 731 ms / 4,000 ms
コード長 403 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 62,400 KB
最終ジャッジ日時 2024-07-07 01:27:26
合計ジャッジ時間 9,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
59,108 KB
testcase_01 AC 365 ms
60,704 KB
testcase_02 AC 521 ms
60,556 KB
testcase_03 AC 273 ms
61,628 KB
testcase_04 AC 148 ms
61,764 KB
testcase_05 AC 323 ms
60,580 KB
testcase_06 AC 79 ms
59,424 KB
testcase_07 AC 162 ms
60,828 KB
testcase_08 AC 396 ms
61,900 KB
testcase_09 AC 302 ms
61,020 KB
testcase_10 AC 40 ms
60,748 KB
testcase_11 AC 103 ms
61,052 KB
testcase_12 AC 585 ms
61,528 KB
testcase_13 AC 52 ms
61,232 KB
testcase_14 AC 44 ms
60,500 KB
testcase_15 AC 463 ms
60,872 KB
testcase_16 AC 167 ms
60,508 KB
testcase_17 AC 202 ms
60,268 KB
testcase_18 AC 64 ms
60,320 KB
testcase_19 AC 62 ms
60,168 KB
testcase_20 AC 31 ms
52,664 KB
testcase_21 AC 32 ms
53,420 KB
testcase_22 AC 40 ms
54,096 KB
testcase_23 AC 32 ms
52,596 KB
testcase_24 AC 31 ms
53,184 KB
testcase_25 AC 33 ms
53,684 KB
testcase_26 AC 34 ms
53,876 KB
testcase_27 AC 30 ms
53,024 KB
testcase_28 AC 31 ms
52,892 KB
testcase_29 AC 30 ms
52,680 KB
testcase_30 AC 726 ms
61,920 KB
testcase_31 AC 719 ms
62,224 KB
testcase_32 AC 728 ms
60,644 KB
testcase_33 AC 727 ms
61,312 KB
testcase_34 AC 731 ms
62,400 KB
testcase_35 AC 261 ms
61,816 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