結果

問題 No.1844 Divisors Sum Sum
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-02-18 21:48:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 3,000 ms
コード長 528 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,268 KB
最終ジャッジ日時 2024-06-29 08:40:37
合計ジャッジ時間 7,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 370 ms
75,876 KB
testcase_01 AC 369 ms
76,204 KB
testcase_02 AC 371 ms
75,704 KB
testcase_03 AC 369 ms
76,268 KB
testcase_04 AC 376 ms
75,776 KB
testcase_05 AC 374 ms
75,660 KB
testcase_06 AC 375 ms
75,776 KB
testcase_07 AC 381 ms
75,788 KB
testcase_08 AC 377 ms
75,784 KB
testcase_09 AC 365 ms
75,864 KB
testcase_10 AC 340 ms
75,664 KB
testcase_11 AC 111 ms
75,648 KB
testcase_12 AC 270 ms
75,820 KB
testcase_13 AC 79 ms
74,352 KB
testcase_14 AC 156 ms
75,920 KB
testcase_15 AC 34 ms
52,876 KB
testcase_16 AC 34 ms
53,292 KB
testcase_17 AC 33 ms
52,492 KB
testcase_18 AC 34 ms
52,600 KB
testcase_19 AC 34 ms
52,612 KB
testcase_20 AC 34 ms
52,460 KB
testcase_21 AC 35 ms
52,828 KB
testcase_22 AC 33 ms
53,228 KB
testcase_23 AC 33 ms
53,164 KB
testcase_24 AC 33 ms
52,988 KB
testcase_25 AC 32 ms
53,444 KB
testcase_26 AC 32 ms
53,256 KB
testcase_27 AC 33 ms
53,468 KB
testcase_28 AC 33 ms
53,972 KB
testcase_29 AC 32 ms
53,236 KB
testcase_30 AC 33 ms
53,348 KB
testcase_31 AC 33 ms
53,788 KB
testcase_32 AC 32 ms
52,500 KB
testcase_33 AC 32 ms
52,812 KB
testcase_34 AC 32 ms
52,196 KB
testcase_35 AC 32 ms
53,360 KB
testcase_36 AC 34 ms
52,488 KB
testcase_37 AC 34 ms
52,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

それぞれの数について

(3* 2^0 + 2* 2^1 + 1* 2^2) = 3+4+4 = 11
(2* 3^0 + 1* 3^1) = 2+3 = 5

みたいにすればよい

Σ()

"""

import sys
from sys import stdin

mod = 10**9+7

def inv(x,mod):
    return pow(x,mod-2,mod)

def solve(e,P):

    N = e+1

    ret = P * ( pow(P,N,mod)-1 ) + N*(-P) + N
    ret *= inv( (P-1)**2 , mod )
    return ret % mod

L = int(stdin.readline())

ans = 1

for i in range(L):

    P,e = map(int,stdin.readline().split())
    ans *= solve(e,P)
    ans %= mod

print (ans % mod)
0