結果

問題 No.886 Direct
ユーザー shotoyooshotoyoo
提出日時 2020-11-21 15:45:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,299 ms / 4,000 ms
コード長 1,127 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 328,032 KB
最終ジャッジ日時 2024-07-23 15:42:14
合計ジャッジ時間 11,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,204 KB
testcase_01 AC 38 ms
52,260 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 61 ms
68,976 KB
testcase_04 AC 37 ms
52,748 KB
testcase_05 AC 37 ms
52,924 KB
testcase_06 AC 38 ms
53,416 KB
testcase_07 AC 37 ms
52,868 KB
testcase_08 AC 36 ms
53,964 KB
testcase_09 AC 35 ms
53,300 KB
testcase_10 AC 37 ms
52,796 KB
testcase_11 AC 35 ms
53,028 KB
testcase_12 AC 35 ms
53,544 KB
testcase_13 AC 35 ms
52,352 KB
testcase_14 AC 35 ms
53,468 KB
testcase_15 AC 35 ms
52,952 KB
testcase_16 AC 36 ms
53,020 KB
testcase_17 AC 54 ms
66,036 KB
testcase_18 AC 65 ms
71,364 KB
testcase_19 AC 63 ms
71,468 KB
testcase_20 AC 59 ms
69,432 KB
testcase_21 AC 52 ms
65,364 KB
testcase_22 AC 65 ms
70,884 KB
testcase_23 AC 174 ms
100,564 KB
testcase_24 AC 355 ms
140,880 KB
testcase_25 AC 160 ms
99,024 KB
testcase_26 AC 140 ms
94,716 KB
testcase_27 AC 637 ms
195,636 KB
testcase_28 AC 640 ms
194,564 KB
testcase_29 AC 36 ms
52,192 KB
testcase_30 AC 36 ms
52,776 KB
testcase_31 AC 1,237 ms
328,032 KB
testcase_32 AC 1,272 ms
327,844 KB
testcase_33 AC 1,299 ms
327,732 KB
testcase_34 AC 1,276 ms
327,912 KB
testcase_35 AC 1,273 ms
326,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")

h,w = list(map(int, input().split()))
m = min(h,w)
f = [0]*(m+1)
M = 10**9+7
def subh(k):
    num = h//k
    return h*num - (k + num*k)*num//2
def subw(k):
    num = w//k
    return w*num - (k + num*k)*num//2
def hurui(n):
    """線形篩
    pl: 素数のリスト
    mpf: iを割り切る最小の素因数
    """
    pl = []
    mpf = [None]*(n+1)
    for d in range(2,n):
        if mpf[d] is None:
            mpf[d] = d
            pl.append(d)
        for p in pl:
            if p*d>n or p>mpf[d]:
                break
            mpf[p*d] = p
    return pl, mpf
_,mpf = hurui(m+1)
# pl.insert(0,1)
for p in range(m, 0, -1):
    f[p] += subh(p)*subw(p)
    if mpf[p]!=p:
        continue
    num = m//p
    for k in range(1,num+1):
        f[k] -= f[k*p]
        f[k] %= M
# for k in range(m, 0, -1):
#     f[k] = subh(k)*subw(k)
#     for i in range(2*k, m+1, k):
#         f[k] -= f[i]
#         f[k] %= M
#     f[k] %= M
ans = (f[1]*2 + (h-1)*w + h*(w-1))%M
print(ans%M)
0