結果

問題 No.1844 Divisors Sum Sum
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-02-21 22:28:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 3,000 ms
コード長 258 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 78,792 KB
最終ジャッジ日時 2024-06-30 01:34:32
合計ジャッジ時間 10,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
78,492 KB
testcase_01 AC 488 ms
78,504 KB
testcase_02 AC 495 ms
78,792 KB
testcase_03 AC 491 ms
78,144 KB
testcase_04 AC 486 ms
78,628 KB
testcase_05 AC 489 ms
78,300 KB
testcase_06 AC 484 ms
78,252 KB
testcase_07 AC 498 ms
78,412 KB
testcase_08 AC 492 ms
78,036 KB
testcase_09 AC 488 ms
78,148 KB
testcase_10 AC 452 ms
78,100 KB
testcase_11 AC 164 ms
78,308 KB
testcase_12 AC 365 ms
78,452 KB
testcase_13 AC 122 ms
78,256 KB
testcase_14 AC 220 ms
78,216 KB
testcase_15 AC 51 ms
63,624 KB
testcase_16 AC 53 ms
64,160 KB
testcase_17 AC 52 ms
63,352 KB
testcase_18 AC 50 ms
63,360 KB
testcase_19 AC 52 ms
62,908 KB
testcase_20 AC 53 ms
63,120 KB
testcase_21 AC 51 ms
63,092 KB
testcase_22 AC 49 ms
64,572 KB
testcase_23 AC 54 ms
63,376 KB
testcase_24 AC 54 ms
63,016 KB
testcase_25 AC 53 ms
62,876 KB
testcase_26 AC 53 ms
63,364 KB
testcase_27 AC 54 ms
63,504 KB
testcase_28 AC 54 ms
63,132 KB
testcase_29 AC 53 ms
64,028 KB
testcase_30 AC 51 ms
63,792 KB
testcase_31 AC 53 ms
63,400 KB
testcase_32 AC 52 ms
63,124 KB
testcase_33 AC 52 ms
63,712 KB
testcase_34 AC 53 ms
63,164 KB
testcase_35 AC 53 ms
64,288 KB
testcase_36 AC 50 ms
62,764 KB
testcase_37 AC 53 ms
63,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from re import A


l = int(input())
mod = 10**9+7
ans = 1
for i in range(l):
    p,e = map(int,input().split())
    rp = pow(p-1,mod-2,mod)
    a = p*(pow(p,e+1,mod)-1)%mod*rp%mod
    a -= (e+1)
    a %= mod
    a *= rp
    ans *= a
    ans %= mod
print(ans)
0