結果

問題 No.1966 Median of Divisors
ユーザー shobonvipshobonvip
提出日時 2022-06-03 21:30:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 77,320 KB
最終ジャッジ日時 2024-09-21 02:28:07
合計ジャッジ時間 4,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,084 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 50 ms
61,704 KB
testcase_03 AC 54 ms
67,084 KB
testcase_04 AC 393 ms
75,908 KB
testcase_05 AC 435 ms
76,568 KB
testcase_06 AC 412 ms
77,320 KB
testcase_07 AC 114 ms
76,168 KB
testcase_08 AC 297 ms
76,152 KB
testcase_09 AC 362 ms
76,536 KB
testcase_10 AC 372 ms
75,868 KB
testcase_11 AC 201 ms
76,104 KB
testcase_12 AC 251 ms
75,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7
inv2 = pow(2, mod-2, mod)
inv6 = pow(6, mod-2, mod)
T = int(input())
for _ in range(T):
	n, m = map(int,input().split())
	# 1 -> n^m のうち, 平方数を除いたものの, 総和!!
	v = pow(n, m, mod)
	w = pow(n, m//2, mod)
	print((v*(v+1)*inv2 - w*(w+1)*(2*w+1)*inv6) % mod)
0