結果

問題 No.1844 Divisors Sum Sum
ユーザー ygd.ygd.
提出日時 2022-02-18 22:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 3,000 ms
コード長 913 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-29 09:00:47
合計ジャッジ時間 8,936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
75,456 KB
testcase_01 AC 500 ms
75,348 KB
testcase_02 AC 496 ms
75,356 KB
testcase_03 AC 491 ms
75,264 KB
testcase_04 AC 490 ms
75,392 KB
testcase_05 AC 493 ms
75,776 KB
testcase_06 AC 500 ms
75,264 KB
testcase_07 AC 491 ms
75,468 KB
testcase_08 AC 493 ms
75,776 KB
testcase_09 AC 491 ms
75,432 KB
testcase_10 AC 458 ms
75,264 KB
testcase_11 AC 139 ms
75,392 KB
testcase_12 AC 356 ms
75,340 KB
testcase_13 AC 91 ms
71,552 KB
testcase_14 AC 200 ms
75,520 KB
testcase_15 AC 33 ms
51,968 KB
testcase_16 AC 33 ms
51,840 KB
testcase_17 AC 34 ms
51,968 KB
testcase_18 AC 35 ms
52,352 KB
testcase_19 AC 32 ms
51,584 KB
testcase_20 AC 32 ms
51,456 KB
testcase_21 AC 32 ms
51,968 KB
testcase_22 AC 33 ms
51,712 KB
testcase_23 AC 32 ms
51,840 KB
testcase_24 AC 33 ms
51,968 KB
testcase_25 AC 31 ms
51,712 KB
testcase_26 AC 32 ms
51,712 KB
testcase_27 AC 32 ms
52,224 KB
testcase_28 AC 32 ms
51,712 KB
testcase_29 AC 31 ms
51,712 KB
testcase_30 AC 32 ms
51,456 KB
testcase_31 AC 32 ms
51,840 KB
testcase_32 AC 31 ms
52,224 KB
testcase_33 AC 32 ms
51,820 KB
testcase_34 AC 31 ms
51,712 KB
testcase_35 AC 33 ms
51,968 KB
testcase_36 AC 32 ms
51,968 KB
testcase_37 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]


def main():
    L = int(input())
    ans = 1
    for i in range(L):
        p,e = map(int,input().split())
        inv = pow(1-p,MOD-2,MOD)
        #print(inv)
        x = e+1 - p*(1 - pow(p,e,MOD)) * inv - pow(p,e+1,MOD)
        #print(e+1, p*(1 - pow(p,e,MOD)), pow(p,e+1))
        x %= MOD
        #print(x)
        x *= inv
        ans *= x%MOD
        ans %= MOD
    print(ans)


if __name__ == '__main__':
    main()
0