結果

問題 No.1844 Divisors Sum Sum
ユーザー rlangevinrlangevin
提出日時 2023-02-05 16:36:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 596 ms / 3,000 ms
コード長 284 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,184 KB
最終ジャッジ日時 2024-07-04 05:04:51
合計ジャッジ時間 11,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 571 ms
75,932 KB
testcase_01 AC 579 ms
75,812 KB
testcase_02 AC 584 ms
75,884 KB
testcase_03 AC 584 ms
75,952 KB
testcase_04 AC 589 ms
75,380 KB
testcase_05 AC 578 ms
75,944 KB
testcase_06 AC 581 ms
75,616 KB
testcase_07 AC 581 ms
76,184 KB
testcase_08 AC 590 ms
76,000 KB
testcase_09 AC 596 ms
75,436 KB
testcase_10 AC 540 ms
76,120 KB
testcase_11 AC 162 ms
75,616 KB
testcase_12 AC 417 ms
75,940 KB
testcase_13 AC 103 ms
75,504 KB
testcase_14 AC 225 ms
75,616 KB
testcase_15 AC 35 ms
53,376 KB
testcase_16 AC 38 ms
52,272 KB
testcase_17 AC 36 ms
52,160 KB
testcase_18 AC 38 ms
53,280 KB
testcase_19 AC 37 ms
52,556 KB
testcase_20 AC 37 ms
51,996 KB
testcase_21 AC 35 ms
52,488 KB
testcase_22 AC 36 ms
52,884 KB
testcase_23 AC 36 ms
52,280 KB
testcase_24 AC 34 ms
51,888 KB
testcase_25 AC 36 ms
51,944 KB
testcase_26 AC 34 ms
52,620 KB
testcase_27 AC 34 ms
52,628 KB
testcase_28 AC 36 ms
52,356 KB
testcase_29 AC 35 ms
52,396 KB
testcase_30 AC 35 ms
52,916 KB
testcase_31 AC 34 ms
52,072 KB
testcase_32 AC 35 ms
51,876 KB
testcase_33 AC 35 ms
52,080 KB
testcase_34 AC 35 ms
52,880 KB
testcase_35 AC 36 ms
53,944 KB
testcase_36 AC 36 ms
52,180 KB
testcase_37 AC 35 ms
52,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

ans = 1
mod = 10 ** 9 + 7
L = int(readline())
for i in range(L):
    d, e = map(int, readline().split())
    ans *= pow(d - 1, mod - 2, mod) * (d * (pow(d, e + 1, mod) - 1) * pow(d - 1, mod - 2, mod) - (e + 1)  )
    ans %= mod
print(ans)    
0