結果

問題 No.1966 Median of Divisors
ユーザー MasKoaTSMasKoaTS
提出日時 2022-06-03 20:35:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-21 02:24:48
合計ジャッジ時間 3,891 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
52,208 KB
testcase_02 AC 48 ms
54,528 KB
testcase_03 AC 49 ms
60,032 KB
testcase_04 AC 190 ms
77,184 KB
testcase_05 AC 250 ms
77,440 KB
testcase_06 AC 239 ms
77,440 KB
testcase_07 AC 75 ms
72,320 KB
testcase_08 AC 152 ms
76,904 KB
testcase_09 AC 178 ms
76,928 KB
testcase_10 AC 179 ms
76,800 KB
testcase_11 AC 142 ms
76,672 KB
testcase_12 AC 161 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 10 ** 9 + 7
inv2 = pow(2, mod - 2, mod)
inv6 = pow(6, mod - 2, mod)

for _ in [0] * int(input()):
    n, m = map(int, input().split())
    h = m // 2
    a = pow(n, m, mod)
    b = pow(n, h, mod)
    ans = a * (a + 1) % mod * inv2 % mod + mod - b * (b + 1) % mod * (2 * b + 1) % mod * inv6 % mod
    ans %= mod
    print(ans)
    
0