結果

問題 No.1844 Divisors Sum Sum
ユーザー horitaka1999horitaka1999
提出日時 2022-02-19 00:22:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 523 ms / 3,000 ms
コード長 329 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,012 KB
最終ジャッジ日時 2024-06-29 10:04:54
合計ジャッジ時間 9,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 513 ms
87,864 KB
testcase_01 AC 515 ms
87,620 KB
testcase_02 AC 523 ms
87,752 KB
testcase_03 AC 521 ms
88,012 KB
testcase_04 AC 522 ms
87,888 KB
testcase_05 AC 517 ms
87,756 KB
testcase_06 AC 523 ms
87,752 KB
testcase_07 AC 517 ms
87,876 KB
testcase_08 AC 520 ms
87,880 KB
testcase_09 AC 516 ms
87,760 KB
testcase_10 AC 480 ms
86,660 KB
testcase_11 AC 168 ms
78,720 KB
testcase_12 AC 382 ms
84,052 KB
testcase_13 AC 123 ms
76,672 KB
testcase_14 AC 222 ms
80,512 KB
testcase_15 AC 40 ms
51,584 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 39 ms
51,840 KB
testcase_20 AC 39 ms
51,584 KB
testcase_21 AC 40 ms
51,712 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 40 ms
51,712 KB
testcase_24 AC 40 ms
51,456 KB
testcase_25 AC 40 ms
51,328 KB
testcase_26 AC 39 ms
51,712 KB
testcase_27 AC 39 ms
51,712 KB
testcase_28 AC 39 ms
51,712 KB
testcase_29 AC 39 ms
51,840 KB
testcase_30 AC 39 ms
51,456 KB
testcase_31 AC 39 ms
51,712 KB
testcase_32 AC 39 ms
51,712 KB
testcase_33 AC 39 ms
51,840 KB
testcase_34 AC 39 ms
51,712 KB
testcase_35 AC 40 ms
51,712 KB
testcase_36 AC 38 ms
51,712 KB
testcase_37 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
mod = 10 ** 9 + 7
store = []
for _ in range(L):
    p,e = map(int,input().split())
    store.append((p,e))
ans = 1
for p,e in store:
    up = p * (pow(p,e+1,mod)-1) - (p-1) * (e+1)
    up %= mod
    down = (p-1) ** 2
    down %= mod
    tmp =  up * pow(down,mod-2,mod) 
    ans *= tmp
    ans %= mod
print(ans)

0