結果

問題 No.1966 Median of Divisors
ユーザー titiatitia
提出日時 2022-06-03 21:55:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-09-21 02:41:01
合計ジャッジ時間 5,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 57 ms
61,440 KB
testcase_03 AC 63 ms
65,024 KB
testcase_04 AC 576 ms
77,696 KB
testcase_05 AC 622 ms
77,952 KB
testcase_06 AC 602 ms
77,440 KB
testcase_07 AC 149 ms
77,184 KB
testcase_08 AC 436 ms
77,568 KB
testcase_09 AC 541 ms
78,080 KB
testcase_10 AC 544 ms
77,824 KB
testcase_11 AC 276 ms
77,668 KB
testcase_12 AC 345 ms
77,544 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)


    ANS=x*(x+1)*pow(2,mod-2,mod)

    y=pow(N,M//2,mod)

    ANS-=y*(y+1)*(2*y+1)*pow(6,mod-2,mod)

    print(ANS%mod)
0