結果

問題 No.1201 お菓子配り-4
ユーザー mkawa2mkawa2
提出日時 2021-07-06 12:18:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 833 ms / 4,000 ms
コード長 824 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 63,776 KB
最終ジャッジ日時 2024-07-01 12:07:51
合計ジャッジ時間 11,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
60,424 KB
testcase_01 AC 422 ms
62,424 KB
testcase_02 AC 591 ms
62,076 KB
testcase_03 AC 308 ms
61,516 KB
testcase_04 AC 174 ms
61,392 KB
testcase_05 AC 368 ms
62,536 KB
testcase_06 AC 93 ms
60,532 KB
testcase_07 AC 194 ms
63,068 KB
testcase_08 AC 451 ms
63,472 KB
testcase_09 AC 345 ms
62,740 KB
testcase_10 AC 49 ms
61,556 KB
testcase_11 AC 124 ms
62,764 KB
testcase_12 AC 667 ms
62,856 KB
testcase_13 AC 61 ms
60,620 KB
testcase_14 AC 54 ms
60,460 KB
testcase_15 AC 538 ms
63,776 KB
testcase_16 AC 193 ms
61,420 KB
testcase_17 AC 237 ms
61,500 KB
testcase_18 AC 77 ms
60,948 KB
testcase_19 AC 74 ms
60,508 KB
testcase_20 AC 38 ms
53,200 KB
testcase_21 AC 38 ms
51,944 KB
testcase_22 AC 38 ms
52,952 KB
testcase_23 AC 38 ms
52,744 KB
testcase_24 AC 38 ms
52,440 KB
testcase_25 AC 38 ms
53,408 KB
testcase_26 AC 39 ms
52,580 KB
testcase_27 AC 39 ms
52,472 KB
testcase_28 AC 38 ms
53,396 KB
testcase_29 AC 39 ms
53,328 KB
testcase_30 AC 831 ms
63,044 KB
testcase_31 AC 832 ms
62,464 KB
testcase_32 AC 831 ms
63,400 KB
testcase_33 AC 833 ms
63,160 KB
testcase_34 AC 828 ms
63,660 KB
testcase_35 AC 61 ms
61,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

from math import gcd

n = II()
m = II()
aa = LI()
bb = LI()

ans = 0
for a in aa:
    for b in bb:
        s = (a+1)*(b+1)
        t = gcd(a, b)+1
        ans += ((s+t)//2-b-1)*2
        ans %= md
print(ans)
0