結果

問題 No.1966 Median of Divisors
ユーザー titiatitia
提出日時 2022-06-03 21:56:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,812 KB
最終ジャッジ日時 2024-09-21 02:41:25
合計ジャッジ時間 5,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,292 KB
testcase_01 AC 41 ms
52,624 KB
testcase_02 AC 57 ms
62,592 KB
testcase_03 AC 65 ms
65,808 KB
testcase_04 AC 586 ms
77,772 KB
testcase_05 AC 637 ms
77,812 KB
testcase_06 AC 611 ms
77,592 KB
testcase_07 AC 149 ms
77,168 KB
testcase_08 AC 440 ms
77,488 KB
testcase_09 AC 546 ms
77,732 KB
testcase_10 AC 548 ms
77,492 KB
testcase_11 AC 283 ms
77,780 KB
testcase_12 AC 349 ms
77,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7  
T=int(input())
for tests in range(T):
    N,M=map(int,input().split())
    x=pow(N,M,mod)
    y=pow(N,M//2,mod)
    print((x*(x+1)*pow(2,mod-2,mod)-y*(y+1)*(2*y+1)*pow(6,mod-2,mod))%mod)
0