結果

問題 No.1844 Divisors Sum Sum
ユーザー 👑 rin204rin204
提出日時 2022-02-18 21:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 3,000 ms
コード長 299 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2024-06-29 08:27:50
合計ジャッジ時間 11,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 592 ms
76,216 KB
testcase_01 AC 631 ms
76,032 KB
testcase_02 AC 636 ms
76,032 KB
testcase_03 AC 631 ms
76,264 KB
testcase_04 AC 632 ms
76,160 KB
testcase_05 AC 630 ms
76,032 KB
testcase_06 AC 626 ms
76,032 KB
testcase_07 AC 635 ms
76,160 KB
testcase_08 AC 642 ms
76,120 KB
testcase_09 AC 639 ms
76,392 KB
testcase_10 AC 586 ms
76,220 KB
testcase_11 AC 177 ms
75,904 KB
testcase_12 AC 459 ms
76,032 KB
testcase_13 AC 122 ms
75,776 KB
testcase_14 AC 253 ms
76,032 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 37 ms
51,584 KB
testcase_17 AC 38 ms
51,456 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 37 ms
51,584 KB
testcase_21 AC 37 ms
51,456 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 37 ms
51,456 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 38 ms
51,840 KB
testcase_27 AC 38 ms
51,584 KB
testcase_28 AC 37 ms
52,096 KB
testcase_29 AC 36 ms
51,840 KB
testcase_30 AC 39 ms
51,712 KB
testcase_31 AC 38 ms
52,096 KB
testcase_32 AC 37 ms
51,328 KB
testcase_33 AC 37 ms
51,584 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 38 ms
51,584 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

l = int(input())
ans = 1
for _ in range(l):
    p, e = map(int, input().split())
    e += 1
    s = pow(p, e, MOD) - e
    s %= MOD
    inv = pow(p - 1, MOD - 2, MOD)
    s += p * (pow(p, e - 1, MOD) - 1) * inv
    s %= MOD
    ans *= s * inv % MOD
    ans %= MOD

print(ans)
    
0