結果

問題 No.1844 Divisors Sum Sum
ユーザー chineristACchineristAC
提出日時 2022-02-18 22:25:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 3,000 ms
コード長 542 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 77,424 KB
最終ジャッジ日時 2024-06-29 09:16:56
合計ジャッジ時間 7,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 361 ms
77,036 KB
testcase_01 AC 376 ms
77,424 KB
testcase_02 AC 373 ms
77,144 KB
testcase_03 AC 363 ms
76,940 KB
testcase_04 AC 362 ms
76,632 KB
testcase_05 AC 364 ms
76,748 KB
testcase_06 AC 363 ms
77,020 KB
testcase_07 AC 368 ms
76,964 KB
testcase_08 AC 361 ms
77,008 KB
testcase_09 AC 360 ms
76,616 KB
testcase_10 AC 338 ms
76,684 KB
testcase_11 AC 121 ms
77,048 KB
testcase_12 AC 284 ms
76,604 KB
testcase_13 AC 90 ms
77,016 KB
testcase_14 AC 168 ms
76,996 KB
testcase_15 AC 47 ms
56,088 KB
testcase_16 AC 45 ms
55,828 KB
testcase_17 AC 43 ms
56,080 KB
testcase_18 AC 41 ms
56,328 KB
testcase_19 AC 40 ms
56,344 KB
testcase_20 AC 40 ms
55,516 KB
testcase_21 AC 41 ms
57,120 KB
testcase_22 AC 41 ms
56,084 KB
testcase_23 AC 42 ms
56,148 KB
testcase_24 AC 45 ms
56,560 KB
testcase_25 AC 44 ms
56,656 KB
testcase_26 AC 41 ms
56,224 KB
testcase_27 AC 41 ms
56,396 KB
testcase_28 AC 40 ms
56,432 KB
testcase_29 AC 41 ms
55,964 KB
testcase_30 AC 42 ms
56,540 KB
testcase_31 AC 42 ms
56,604 KB
testcase_32 AC 43 ms
55,828 KB
testcase_33 AC 42 ms
57,136 KB
testcase_34 AC 41 ms
56,092 KB
testcase_35 AC 41 ms
56,224 KB
testcase_36 AC 42 ms
56,640 KB
testcase_37 AC 40 ms
56,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 10**9 + 7

L = int(input())
res = 1
for _ in range(L):
    p,e = mi()

    ip = pow(p-1,mod-2,mod)
    res *= ip * (((p*(pow(p,e+1,mod)-1)%mod)*ip % mod)-(e+1)) % mod
    #print(ip * (((p*(pow(p,e+1,mod)-1)%mod)*ip % mod)-(e+1)))
    res %= mod

print(res)
0