結果

問題 No.1844 Divisors Sum Sum
ユーザー KazunKazun
提出日時 2022-02-18 22:02:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 393 ms / 3,000 ms
コード長 379 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-06-29 08:55:58
合計ジャッジ時間 7,565 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 373 ms
75,960 KB
testcase_01 AC 378 ms
75,420 KB
testcase_02 AC 375 ms
75,456 KB
testcase_03 AC 377 ms
76,244 KB
testcase_04 AC 379 ms
75,780 KB
testcase_05 AC 384 ms
75,892 KB
testcase_06 AC 376 ms
75,332 KB
testcase_07 AC 387 ms
75,320 KB
testcase_08 AC 393 ms
76,044 KB
testcase_09 AC 392 ms
75,892 KB
testcase_10 AC 354 ms
75,364 KB
testcase_11 AC 114 ms
75,452 KB
testcase_12 AC 283 ms
76,224 KB
testcase_13 AC 91 ms
76,116 KB
testcase_14 AC 164 ms
76,248 KB
testcase_15 AC 34 ms
52,420 KB
testcase_16 AC 33 ms
51,888 KB
testcase_17 AC 33 ms
52,264 KB
testcase_18 AC 32 ms
52,568 KB
testcase_19 AC 35 ms
51,876 KB
testcase_20 AC 35 ms
52,680 KB
testcase_21 AC 35 ms
52,456 KB
testcase_22 AC 33 ms
52,308 KB
testcase_23 AC 34 ms
51,960 KB
testcase_24 AC 33 ms
51,960 KB
testcase_25 AC 36 ms
52,804 KB
testcase_26 AC 37 ms
52,132 KB
testcase_27 AC 36 ms
52,268 KB
testcase_28 AC 31 ms
52,836 KB
testcase_29 AC 33 ms
52,064 KB
testcase_30 AC 32 ms
51,904 KB
testcase_31 AC 32 ms
53,288 KB
testcase_32 AC 32 ms
51,900 KB
testcase_33 AC 32 ms
52,352 KB
testcase_34 AC 32 ms
53,312 KB
testcase_35 AC 32 ms
52,480 KB
testcase_36 AC 32 ms
53,312 KB
testcase_37 AC 33 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def product_mod(*X):
    y=1
    for x in X:
        y*=x%Mod; y%=Mod
    return y
#==================================================

import sys
input=sys.stdin.readline

Ans=1; Mod=10**9+7
L=int(input())
for _ in range(L):
    P,e=map(int,input().split())

    alpha=pow(P-1,Mod-2,Mod)
    Ans*=product_mod(pow(P,e+2,Mod)-(P-1)*(e+2)-1, alpha**2)
    Ans%=Mod

print(Ans%Mod)
0