結果

問題 No.1966 Median of Divisors
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-03 22:52:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 460 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,632 KB
最終ジャッジ日時 2024-09-21 03:07:59
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,956 KB
testcase_01 AC 37 ms
52,940 KB
testcase_02 AC 54 ms
61,968 KB
testcase_03 AC 63 ms
66,608 KB
testcase_04 AC 386 ms
76,440 KB
testcase_05 AC 460 ms
76,280 KB
testcase_06 AC 436 ms
76,528 KB
testcase_07 AC 118 ms
76,220 KB
testcase_08 AC 309 ms
76,100 KB
testcase_09 AC 374 ms
76,632 KB
testcase_10 AC 372 ms
76,256 KB
testcase_11 AC 218 ms
76,420 KB
testcase_12 AC 263 ms
76,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
div2 = pow(2, mod-2, mod)
div6 = pow(6, mod-2, mod)


def main():
    N, M = map(int, input().split())
    m = M // 2

    x = pow(N, M, mod)
    y = pow(N, m, mod)

    res = x * (x + 1) % mod * div2 % mod
    res -= y * (y + 1) % mod * (2 * y + 1) % mod * div6 % mod
    return res % mod


T = int(input())
for _ in range(T):
    print(main())
0