結果

問題 No.1201 お菓子配り-4
ユーザー neterukunneterukun
提出日時 2020-08-28 23:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,063 ms / 4,000 ms
コード長 551 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,752 KB
最終ジャッジ日時 2024-11-14 02:00:45
合計ジャッジ時間 21,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
75,704 KB
testcase_01 AC 745 ms
76,196 KB
testcase_02 AC 1,042 ms
76,512 KB
testcase_03 AC 532 ms
76,116 KB
testcase_04 AC 285 ms
76,060 KB
testcase_05 AC 639 ms
76,512 KB
testcase_06 AC 140 ms
76,016 KB
testcase_07 AC 323 ms
76,328 KB
testcase_08 AC 800 ms
76,320 KB
testcase_09 AC 595 ms
76,112 KB
testcase_10 AC 51 ms
70,324 KB
testcase_11 AC 193 ms
76,428 KB
testcase_12 AC 1,195 ms
76,152 KB
testcase_13 AC 82 ms
76,024 KB
testcase_14 AC 65 ms
75,928 KB
testcase_15 AC 946 ms
76,432 KB
testcase_16 AC 318 ms
76,272 KB
testcase_17 AC 396 ms
76,052 KB
testcase_18 AC 106 ms
76,120 KB
testcase_19 AC 104 ms
76,272 KB
testcase_20 AC 36 ms
52,920 KB
testcase_21 AC 36 ms
52,264 KB
testcase_22 AC 36 ms
52,524 KB
testcase_23 AC 36 ms
52,948 KB
testcase_24 AC 35 ms
52,656 KB
testcase_25 AC 36 ms
53,556 KB
testcase_26 AC 36 ms
52,688 KB
testcase_27 AC 36 ms
52,192 KB
testcase_28 AC 36 ms
52,684 KB
testcase_29 AC 36 ms
52,956 KB
testcase_30 AC 1,488 ms
76,500 KB
testcase_31 AC 1,488 ms
76,376 KB
testcase_32 AC 1,485 ms
76,752 KB
testcase_33 AC 1,494 ms
76,368 KB
testcase_34 AC 1,480 ms
76,396 KB
testcase_35 AC 3,063 ms
76,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a: int, b: int) -> int:
    """a, bの最大公約数(greatest common divisor: GCD)を求める
    計算量: O(log(min(a, b)))
    """
    while b:
        a, b = b, a % b
    return a


n = int(input())
m = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
MOD = 10 ** 9 + 7


ans = 0
for i in range(n):
    a_val = a[i]
    for j in range(m):
        b_val = b[j]
        gcd_ = gcd(a_val, b_val)
        ans += gcd_ + (a_val - 1) * (b_val - 1) - 1
        ans += 2 * a_val
        ans %= MOD

print(ans)
0