結果

問題 No.1966 Median of Divisors
ユーザー hiro1729hiro1729
提出日時 2024-02-23 09:02:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-29 04:55:59
合計ジャッジ時間 4,422 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,584 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 50 ms
61,184 KB
testcase_03 AC 57 ms
65,664 KB
testcase_04 AC 354 ms
76,276 KB
testcase_05 AC 417 ms
76,160 KB
testcase_06 AC 377 ms
77,440 KB
testcase_07 AC 104 ms
76,228 KB
testcase_08 AC 269 ms
76,288 KB
testcase_09 AC 331 ms
76,228 KB
testcase_10 AC 325 ms
76,288 KB
testcase_11 AC 192 ms
76,288 KB
testcase_12 AC 243 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7
for _ in range(int(input())):
	N, M = map(int, input().split())
	ans = 0
	pNM = pow(N, M, mod)
	pNM2 = pow(N, M // 2, mod)
	ans += pNM * (pNM + 1) // 2 % mod
	ans -= pNM2 * (pNM2 + 1) * (2 * pNM2 + 1) // 6 % mod
	ans %= mod
	print(ans)
0