結果

問題 No.1164 GCD Products hard
ユーザー mkawa2mkawa2
提出日時 2021-06-16 22:43:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,104 ms / 2,500 ms
コード長 1,058 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 183,824 KB
最終ジャッジ日時 2024-06-10 03:27:41
合計ジャッジ時間 26,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 928 ms
183,628 KB
testcase_01 AC 1,076 ms
183,320 KB
testcase_02 AC 918 ms
183,152 KB
testcase_03 AC 690 ms
183,216 KB
testcase_04 AC 690 ms
183,264 KB
testcase_05 AC 965 ms
183,464 KB
testcase_06 AC 1,048 ms
183,164 KB
testcase_07 AC 1,012 ms
183,140 KB
testcase_08 AC 969 ms
183,464 KB
testcase_09 AC 874 ms
183,316 KB
testcase_10 AC 704 ms
183,240 KB
testcase_11 AC 929 ms
183,080 KB
testcase_12 AC 1,038 ms
183,288 KB
testcase_13 AC 855 ms
183,152 KB
testcase_14 AC 808 ms
183,144 KB
testcase_15 AC 1,032 ms
183,196 KB
testcase_16 AC 886 ms
183,620 KB
testcase_17 AC 977 ms
183,180 KB
testcase_18 AC 929 ms
183,412 KB
testcase_19 AC 703 ms
183,448 KB
testcase_20 AC 774 ms
183,824 KB
testcase_21 AC 1,071 ms
183,336 KB
testcase_22 AC 595 ms
183,320 KB
testcase_23 AC 928 ms
183,212 KB
testcase_24 AC 1,104 ms
183,140 KB
testcase_25 AC 601 ms
183,268 KB
testcase_26 AC 603 ms
183,072 KB
testcase_27 AC 606 ms
183,436 KB
testcase_28 AC 598 ms
183,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

mx = 10000001
isprime = [True]*mx
pp = []
for a in range(2, mx):
    if isprime[a]:
        pp.append(a)
        for b in range(a*a, mx, a):
            isprime[b] = False

a, b, n = LI()
ans = 1
for p in pp:
    cnt = 0
    s = p
    while s <= b:
        cnt += pow(b//s-(a-1)//s, n, md-1)
        s *= p
    ans = ans*pow(p, cnt, md)%md
print(ans)
0