結果

問題 No.1158 GCD Products easy
ユーザー NoaSaberNoaSaber
提出日時 2021-04-06 20:49:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-11 18:56:39
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,884 KB
testcase_01 AC 34 ms
52,676 KB
testcase_02 AC 34 ms
53,428 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 32 ms
53,356 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 33 ms
53,820 KB
testcase_09 WA -
testcase_10 AC 33 ms
52,468 KB
testcase_11 AC 33 ms
52,692 KB
testcase_12 WA -
testcase_13 AC 33 ms
52,208 KB
testcase_14 AC 33 ms
52,584 KB
testcase_15 AC 32 ms
52,960 KB
testcase_16 AC 33 ms
52,820 KB
testcase_17 AC 32 ms
52,728 KB
testcase_18 AC 33 ms
52,596 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 34 ms
52,616 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 31 ms
52,872 KB
testcase_26 AC 32 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,N=map(int,input().split())
mod=10**9+7
ans=1
cnt=[0]*(B+1)
def make_divisors(n):
    lower_divisors,upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
for i in range(B,A-1,-1):
    if i==1:
        break
    x=B//i
    cnt[i]=pow(x,N,mod)
    for j in range(i*2,B+1,i):
        cnt[i]-=cnt[j]
for i,j in enumerate(cnt):
    ans*=pow(i,j,mod)
    ans%=mod
print(ans)
0