結果

問題 No.886 Direct
ユーザー ああいいああいい
提出日時 2022-03-01 11:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 771 ms / 4,000 ms
コード長 653 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 284,864 KB
最終ジャッジ日時 2024-07-07 16:01:47
合計ジャッジ時間 10,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,176 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 64 ms
68,992 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 36 ms
51,840 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 AC 35 ms
52,224 KB
testcase_14 AC 35 ms
51,968 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 35 ms
52,608 KB
testcase_17 AC 63 ms
68,864 KB
testcase_18 AC 66 ms
69,860 KB
testcase_19 AC 64 ms
68,992 KB
testcase_20 AC 62 ms
68,224 KB
testcase_21 AC 66 ms
71,168 KB
testcase_22 AC 64 ms
70,016 KB
testcase_23 AC 360 ms
218,608 KB
testcase_24 AC 402 ms
223,220 KB
testcase_25 AC 257 ms
212,608 KB
testcase_26 AC 334 ms
202,840 KB
testcase_27 AC 694 ms
265,292 KB
testcase_28 AC 696 ms
262,856 KB
testcase_29 AC 733 ms
262,452 KB
testcase_30 AC 766 ms
262,400 KB
testcase_31 AC 765 ms
284,504 KB
testcase_32 AC 771 ms
284,576 KB
testcase_33 AC 758 ms
284,548 KB
testcase_34 AC 749 ms
284,864 KB
testcase_35 AC 756 ms
284,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
C = max(H,W)+1
dat = [0] * C
h = [0] + [H - i for i in range(1,H)] + [0] * (C - H)
w = [0] + [W - i for i in range(1,W)] + [0] * (C - W)

prime = set()
P = 10 ** 9 + 7
for i in range(2,C):
    if dat[i] == 0:
        for j in range(2 * i,C,i):
            dat[j] = 1
        prime.add(i)
for p in prime:
    for j in range((C-1)//p,0,-1):
        h[j] += h[j*p]
        h[j] %= P
        w[j] += w[j*p]
        w[j] %= P
z = [i * j % P for i,j in zip(h,w)]

for p in prime:
    if p > C - 1:break
    for j in range(1,(C-1)//p+1):
        z[j] -= z[j*p]
ans = z[1] * 2 % P + (H-1) * W % P + (W - 1) * H % P
print(ans % P)
0