結果

問題 No.1164 GCD Products hard
ユーザー dachengzdachengz
提出日時 2022-12-19 16:20:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 107,772 KB
最終ジャッジ日時 2024-11-18 01:06:34
合計ジャッジ時間 47,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,112 ms
91,460 KB
testcase_01 AC 2,496 ms
95,876 KB
testcase_02 AC 1,577 ms
87,700 KB
testcase_03 AC 610 ms
74,116 KB
testcase_04 WA -
testcase_05 AC 2,190 ms
92,412 KB
testcase_06 AC 2,070 ms
97,536 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,592 ms
88,576 KB
testcase_10 AC 570 ms
71,424 KB
testcase_11 AC 1,583 ms
90,368 KB
testcase_12 TLE -
testcase_13 AC 1,468 ms
84,736 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2,064 ms
90,880 KB
testcase_18 AC 1,942 ms
89,472 KB
testcase_19 WA -
testcase_20 AC 971 ms
78,976 KB
testcase_21 TLE -
testcase_22 AC 35 ms
51,712 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 35 ms
51,712 KB
testcase_26 AC 33 ms
51,712 KB
testcase_27 AC 32 ms
51,840 KB
testcase_28 AC 32 ms
51,712 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
lastBi = lastval = 1
for i in range(B2, A, -1):
    Bi = B // i
    if Bi != lastBi:
        lastBi = Bi
        lastval = pow(Bi, N, mod2)
        for n in range(i + i, B21, i):
            lastval -= cnt[n]
        lastval = (lastval - Bi + Bi // 2) % mod2
    cnt[i] = lastval
lastAi = lastBi = lastval = 0
for i in range(A, 1, -1):
    Bi = B // i
    Ai = A // i
    if Bi != lastBi or Ai != lastAi:
        lastAi, lastBi = 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
    cnt[i] = lastval
ret = 1
for i in range(B, B // 2, -1):
    ret = ret * i % mod
for i in range(B // 2, 1, -1):
    ret = ret * pow(i, cnt[i], mod) % mod
print(ret)
0