結果

問題 No.1966 Median of Divisors
ユーザー MasKoaTSMasKoaTS
提出日時 2022-01-17 18:30:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-04 22:45:32
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,988 KB
testcase_01 AC 38 ms
54,212 KB
testcase_02 AC 45 ms
56,352 KB
testcase_03 AC 50 ms
62,540 KB
testcase_04 AC 190 ms
77,520 KB
testcase_05 AC 247 ms
77,476 KB
testcase_06 AC 234 ms
77,764 KB
testcase_07 AC 72 ms
73,944 KB
testcase_08 AC 148 ms
77,468 KB
testcase_09 AC 175 ms
77,612 KB
testcase_10 AC 176 ms
77,824 KB
testcase_11 AC 126 ms
77,112 KB
testcase_12 AC 151 ms
77,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = sys.stdin.readline
mod = 10 ** 9 + 7
rev2 = pow(2, mod - 2, mod)
rev6 = pow(6, mod - 2, mod)

for _ in [0] * int(input()):
	n, m = map(int, input().split());	n %= mod
	
	a = pow(n, m, mod)
	b = pow(n, m // 2, mod)

	s = rev2 * a % mod * (a + 1) % mod
	t = rev6 * b % mod * (b + 1) % mod * (b * 2 + 1) % mod

	ans = (s + mod - t) % mod
	print(ans)
0