結果

問題 No.1158 GCD Products easy
ユーザー syunsukesyunsuke
提出日時 2020-09-18 01:19:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 772 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-22 07:26:37
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,840 KB
testcase_01 AC 36 ms
53,848 KB
testcase_02 AC 35 ms
53,356 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 33 ms
52,264 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 32 ms
53,148 KB
testcase_09 WA -
testcase_10 AC 34 ms
53,820 KB
testcase_11 AC 34 ms
52,324 KB
testcase_12 WA -
testcase_13 AC 34 ms
52,572 KB
testcase_14 AC 35 ms
53,240 KB
testcase_15 AC 34 ms
53,356 KB
testcase_16 AC 35 ms
52,688 KB
testcase_17 AC 35 ms
52,620 KB
testcase_18 AC 33 ms
53,108 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 33 ms
54,308 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 34 ms
53,448 KB
testcase_26 AC 32 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,N=map(int,input().split())
L=[0 for i in range(11)]

for i in range(B,A-1,-1):
    #print(i)
    if i*2>B:
        L[i]=1
    elif i==5 or i==4:
        if B>=i*2:
            L[i]=(2**N)-L[i*2]
        else:
            L[i]=1
    elif i==3:
        if B>=3*i:
            L[i]=(3**N)-L[i*3]-L[i*2]
        elif B>=2*i:
            L[i]=(2**N)-L[i*2]
        else:
            L[i]=1
    elif i==2:
        if B>=5*i:
            L[i]=(5**N)-L[i*5]-L[i*3]-(2**N)
        elif B>=4*i:
            L[i]=(4**N)-L[i*3]-(2**N)
        elif B>=3*i:
            L[i]=(3**N)-L[i*3]-L[i*2]
        elif B>=2*i:
            L[i]=(2**N)-L[i*2]
        else:
            L[i]=1
mod=10**9+7

ans=1
for i in range(1,11):
    ans=ans*pow(i,L[i],mod)
    ans%=mod
print(ans)
        
0