結果

問題 No.1164 GCD Products hard
ユーザー dachengzdachengz
提出日時 2022-12-19 17:10:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,211 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 139,240 KB
最終ジャッジ日時 2024-11-18 01:08:11
合計ジャッジ時間 14,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 541 ms
92,288 KB
testcase_01 AC 607 ms
96,512 KB
testcase_02 AC 523 ms
88,448 KB
testcase_03 AC 161 ms
73,088 KB
testcase_04 WA -
testcase_05 AC 591 ms
93,568 KB
testcase_06 AC 697 ms
98,304 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 508 ms
89,216 KB
testcase_10 AC 153 ms
72,320 KB
testcase_11 AC 559 ms
91,508 KB
testcase_12 AC 701 ms
97,792 KB
testcase_13 AC 388 ms
86,144 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 536 ms
91,648 KB
testcase_18 AC 501 ms
89,856 KB
testcase_19 WA -
testcase_20 AC 299 ms
79,744 KB
testcase_21 AC 803 ms
101,504 KB
testcase_22 AC 43 ms
51,840 KB
testcase_23 WA -
testcase_24 AC 803 ms
102,656 KB
testcase_25 AC 42 ms
51,840 KB
testcase_26 AC 39 ms
52,224 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, N = map(int, input().split())

mod = 10 ** 9 + 7
mod2 = 10 ** 9 + 6

B2 = B // 2
B21 = B2 + 1
cnt = [0] * max(A, B21)    
A -= 1

ret = 1
for i in range(B, max(B2, A), -1):
    ret = ret * i % mod

lastBi = lastval = 0
tmpprod = 1
for i in range(max(B2, A), A, -1):
    Bi = B // i
    if Bi != lastBi:
        ret = ret * pow(tmpprod, lastval, mod) % mod
        tmpprod, lastBi = i, Bi
        lastval = pow(Bi, N, mod2)
        for n in range(i + i, B21, i):
            lastval -= cnt[n]
        lastval = (lastval - Bi + Bi // 2) % mod2
    else:
        tmpprod = tmpprod * i % mod
    cnt[i] = lastval
ret = ret * pow(tmpprod, lastval, mod) % mod

lastAi = lastBi = lastval = 0
tmpprod = 1
for i in range(A, 1, -1):
    Bi = B // i
    Ai = A // i
    if Ai == Bi:
        continue
    if Bi != lastBi or Ai != lastAi:
        ret = ret * pow(tmpprod, lastval, mod) % mod
        tmpprod, lastAi, lastBi = i, Ai, Bi
        lastval = pow(Bi - Ai, N, mod2)
        for n in range(i + i, B21, i):
            lastval -= cnt[n]
        lastval = (lastval - Bi + Bi // 2) % mod2
    else:
        tmpprod = tmpprod * i % mod
    cnt[i] = lastval
ret = ret * pow(tmpprod, lastval, mod) % mod
print(ret)
0