結果

問題 No.886 Direct
ユーザー tempura_pptempura_pp
提出日時 2019-08-20 18:44:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,355 ms / 4,000 ms
コード長 609 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 319,276 KB
最終ジャッジ日時 2024-10-06 12:45:08
合計ジャッジ時間 14,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,064 KB
testcase_01 AC 42 ms
53,884 KB
testcase_02 AC 38 ms
52,560 KB
testcase_03 AC 58 ms
66,260 KB
testcase_04 AC 38 ms
53,684 KB
testcase_05 AC 38 ms
52,404 KB
testcase_06 AC 38 ms
53,932 KB
testcase_07 AC 38 ms
52,588 KB
testcase_08 AC 38 ms
52,928 KB
testcase_09 AC 39 ms
52,876 KB
testcase_10 AC 38 ms
52,760 KB
testcase_11 AC 38 ms
52,740 KB
testcase_12 AC 38 ms
52,212 KB
testcase_13 AC 38 ms
52,688 KB
testcase_14 AC 39 ms
52,896 KB
testcase_15 AC 38 ms
51,876 KB
testcase_16 AC 37 ms
53,128 KB
testcase_17 AC 58 ms
66,644 KB
testcase_18 AC 59 ms
68,232 KB
testcase_19 AC 58 ms
66,668 KB
testcase_20 AC 58 ms
67,556 KB
testcase_21 AC 61 ms
67,340 KB
testcase_22 AC 58 ms
66,468 KB
testcase_23 AC 531 ms
206,184 KB
testcase_24 AC 625 ms
217,848 KB
testcase_25 AC 366 ms
181,880 KB
testcase_26 AC 491 ms
185,048 KB
testcase_27 AC 1,312 ms
316,292 KB
testcase_28 AC 1,277 ms
294,624 KB
testcase_29 AC 572 ms
184,880 KB
testcase_30 AC 570 ms
184,964 KB
testcase_31 AC 1,342 ms
319,276 KB
testcase_32 AC 1,332 ms
319,124 KB
testcase_33 AC 1,355 ms
319,052 KB
testcase_34 AC 1,312 ms
319,220 KB
testcase_35 AC 1,311 ms
318,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int,input().split())
n = max(h+1, w+1)
cnt1 = [max(0,h-i) for i in range(n)]
cnt2 = [max(0,w-i) for i in range(n)]
isprime = [1]*n
isprime[0]=0
isprime[1]=0
prime = []
for i,b in enumerate(isprime):
    if b == 0: continue
    prime.append(i)
    j = 2*i
    while j < n :
        isprime[j] = 0
        j += i
for p in prime :
    m = (n-1)//p
    for i in range(m,0,-1):
        cnt1[i]+=cnt1[i*p]
        cnt2[i]+=cnt2[i*p]
cnt = [cnt1[i]*cnt2[i] for i in range(n)]
for p in prime :
    m = (n-1)//p
    for i in range(1,m+1):
        cnt[i]-=cnt[i*p]
print((2*cnt[1]+h*(w-1)+w*(h-1))%(10**9+7))
0