結果

問題 No.886 Direct
ユーザー shotoyooshotoyoo
提出日時 2020-11-21 12:50:51
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 542 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 147,352 KB
最終ジャッジ日時 2024-07-23 15:32:25
合計ジャッジ時間 30,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,852 KB
testcase_01 AC 38 ms
52,660 KB
testcase_02 AC 38 ms
53,952 KB
testcase_03 AC 53 ms
65,520 KB
testcase_04 AC 38 ms
51,872 KB
testcase_05 AC 38 ms
53,880 KB
testcase_06 AC 37 ms
53,532 KB
testcase_07 AC 37 ms
52,644 KB
testcase_08 AC 38 ms
52,592 KB
testcase_09 AC 38 ms
53,664 KB
testcase_10 AC 37 ms
52,548 KB
testcase_11 AC 38 ms
53,576 KB
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 37 ms
51,880 KB
testcase_14 AC 38 ms
51,868 KB
testcase_15 AC 37 ms
53,492 KB
testcase_16 AC 37 ms
52,804 KB
testcase_17 AC 53 ms
66,364 KB
testcase_18 AC 60 ms
70,056 KB
testcase_19 AC 56 ms
68,872 KB
testcase_20 AC 54 ms
66,340 KB
testcase_21 AC 50 ms
64,624 KB
testcase_22 AC 60 ms
71,588 KB
testcase_23 AC 345 ms
85,808 KB
testcase_24 AC 1,202 ms
99,532 KB
testcase_25 AC 312 ms
84,780 KB
testcase_26 AC 238 ms
83,152 KB
testcase_27 AC 2,179 ms
115,776 KB
testcase_28 AC 2,296 ms
116,828 KB
testcase_29 AC 38 ms
52,452 KB
testcase_30 AC 38 ms
52,404 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 = [None]*(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
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