結果

問題 No.886 Direct
ユーザー shotoyooshotoyoo
提出日時 2020-11-21 12:48:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,793 ms / 4,000 ms
コード長 544 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 147,248 KB
最終ジャッジ日時 2024-07-23 15:31:24
合計ジャッジ時間 20,183 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,504 KB
testcase_01 AC 40 ms
52,744 KB
testcase_02 AC 38 ms
51,940 KB
testcase_03 AC 53 ms
64,656 KB
testcase_04 AC 39 ms
53,824 KB
testcase_05 AC 38 ms
52,196 KB
testcase_06 AC 37 ms
52,808 KB
testcase_07 AC 37 ms
52,424 KB
testcase_08 AC 36 ms
52,772 KB
testcase_09 AC 36 ms
52,892 KB
testcase_10 AC 37 ms
52,620 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 36 ms
52,252 KB
testcase_13 AC 37 ms
52,548 KB
testcase_14 AC 37 ms
53,128 KB
testcase_15 AC 36 ms
51,812 KB
testcase_16 AC 37 ms
52,508 KB
testcase_17 AC 53 ms
65,076 KB
testcase_18 AC 61 ms
71,820 KB
testcase_19 AC 59 ms
69,704 KB
testcase_20 AC 56 ms
66,732 KB
testcase_21 AC 50 ms
64,288 KB
testcase_22 AC 62 ms
72,156 KB
testcase_23 AC 232 ms
85,996 KB
testcase_24 AC 616 ms
99,772 KB
testcase_25 AC 214 ms
85,160 KB
testcase_26 AC 177 ms
83,188 KB
testcase_27 AC 1,290 ms
115,692 KB
testcase_28 AC 1,368 ms
116,852 KB
testcase_29 AC 38 ms
52,556 KB
testcase_30 AC 36 ms
52,816 KB
testcase_31 AC 2,697 ms
146,812 KB
testcase_32 AC 2,757 ms
147,164 KB
testcase_33 AC 2,676 ms
146,944 KB
testcase_34 AC 2,784 ms
147,248 KB
testcase_35 AC 2,793 ms
146,988 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 = [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, (m//k)+1):
        f[k] -= f[i*k]
        f[k] %= M
    f[k] %= M
ans = (f[1]*2 + (h-1)*w + h*(w-1))%M
print(ans%M)
0