結果

問題 No.1201 お菓子配り-4
ユーザー mkawa2mkawa2
提出日時 2021-07-06 12:18:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 824 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-07-01 12:07:39
合計ジャッジ時間 56,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
10,752 KB
testcase_01 AC 2,302 ms
10,880 KB
testcase_02 AC 3,305 ms
11,008 KB
testcase_03 AC 1,594 ms
10,880 KB
testcase_04 AC 808 ms
10,880 KB
testcase_05 AC 1,967 ms
10,880 KB
testcase_06 AC 323 ms
10,880 KB
testcase_07 AC 918 ms
10,752 KB
testcase_08 AC 2,466 ms
10,880 KB
testcase_09 AC 1,880 ms
11,008 KB
testcase_10 AC 44 ms
10,752 KB
testcase_11 AC 489 ms
10,752 KB
testcase_12 AC 3,827 ms
11,008 KB
testcase_13 AC 131 ms
10,752 KB
testcase_14 AC 80 ms
10,752 KB
testcase_15 AC 3,029 ms
10,880 KB
testcase_16 AC 925 ms
10,880 KB
testcase_17 AC 1,177 ms
10,752 KB
testcase_18 AC 212 ms
10,880 KB
testcase_19 AC 208 ms
10,752 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 31 ms
10,624 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 31 ms
10,624 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
10,624 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

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