結果

問題 No.1966 Median of Divisors
ユーザー 👑 rin204rin204
提出日時 2022-06-03 21:49:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-09-21 02:37:29
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 53 ms
61,056 KB
testcase_03 AC 57 ms
65,024 KB
testcase_04 AC 384 ms
76,220 KB
testcase_05 AC 450 ms
76,288 KB
testcase_06 AC 428 ms
76,032 KB
testcase_07 AC 132 ms
76,416 KB
testcase_08 AC 300 ms
76,288 KB
testcase_09 AC 384 ms
76,160 KB
testcase_10 AC 389 ms
76,288 KB
testcase_11 AC 225 ms
76,160 KB
testcase_12 AC 269 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
平方数以外
"""


MOD = 10 ** 9 + 7

def solve():
    n, m = map(int, input().split())
    x = pow(n, m, MOD)
    ans = x * (x + 1) // 2
    x = pow(n, m // 2, MOD)
    ans -= x * (x + 1) * (2 * x + 1) // 6
    print(ans % MOD)


for _ in range(int(input())):
    solve()
0