結果

問題 No.1844 Divisors Sum Sum
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-15 15:39:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 3,000 ms
コード長 1,170 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,412 KB
実行使用メモリ 95,384 KB
最終ジャッジ日時 2024-09-18 08:46:20
合計ジャッジ時間 11,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
94,972 KB
testcase_01 AC 557 ms
95,384 KB
testcase_02 AC 564 ms
94,988 KB
testcase_03 AC 559 ms
94,892 KB
testcase_04 AC 566 ms
95,144 KB
testcase_05 AC 555 ms
94,900 KB
testcase_06 AC 553 ms
95,020 KB
testcase_07 AC 548 ms
95,016 KB
testcase_08 AC 553 ms
94,836 KB
testcase_09 AC 540 ms
95,072 KB
testcase_10 AC 502 ms
91,832 KB
testcase_11 AC 162 ms
81,624 KB
testcase_12 AC 400 ms
89,280 KB
testcase_13 AC 117 ms
78,124 KB
testcase_14 AC 229 ms
84,340 KB
testcase_15 AC 45 ms
54,124 KB
testcase_16 AC 46 ms
54,340 KB
testcase_17 AC 41 ms
55,060 KB
testcase_18 AC 41 ms
54,584 KB
testcase_19 AC 43 ms
55,040 KB
testcase_20 AC 41 ms
54,988 KB
testcase_21 AC 43 ms
54,128 KB
testcase_22 AC 43 ms
55,076 KB
testcase_23 AC 42 ms
54,908 KB
testcase_24 AC 42 ms
54,964 KB
testcase_25 AC 42 ms
53,844 KB
testcase_26 AC 42 ms
55,156 KB
testcase_27 AC 43 ms
55,356 KB
testcase_28 AC 42 ms
54,440 KB
testcase_29 AC 42 ms
54,764 KB
testcase_30 AC 42 ms
54,368 KB
testcase_31 AC 42 ms
54,920 KB
testcase_32 AC 42 ms
55,304 KB
testcase_33 AC 43 ms
54,248 KB
testcase_34 AC 41 ms
54,436 KB
testcase_35 AC 43 ms
54,352 KB
testcase_36 AC 43 ms
55,064 KB
testcase_37 AC 41 ms
54,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from math import floor

MOD = int(1e9 + 7)


def getPrimeFactors(n: int) -> Counter:
    """返回 n 的所有质数因子"""
    res = Counter()
    upper = floor(n**0.5) + 1
    for i in range(2, upper):
        while n % i == 0:
            res[i] += 1
            n //= i

    # 注意考虑本身
    if n > 1:
        res[n] += 1
    return res


def sumOfFactors(counter: "Counter[int]") -> int:
    """返回所有约数之和, counter 为这个数的所有质数因子分解."""
    res = 1
    for p, count in counter.items():
        inv = pow(p - 1, MOD - 2, MOD)
        tmp = inv * (inv * (pow(p, count + 2, MOD) - 1) - (count + 2)) % MOD
        res = res * tmp % MOD
    return res


def countOfFactors(counter: "Counter[int]") -> int:
    """返回所有约数个数, counter 为这个数的所有质数因子分解."""
    res = 1
    for count in counter.values():
        res *= count + 1
        res %= MOD
    return res


if __name__ == "__main__":
    n = int(input())
    counter = Counter()
    for _ in range(n):
        p, c = map(int, input().split())
        counter[p] += c
    print(sumOfFactors(counter))
0