結果

問題 No.1966 Median of Divisors
ユーザー titiatitia
提出日時 2022-06-03 21:54:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 230 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-21 02:40:46
合計ジャッジ時間 14,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 37 ms
10,624 KB
testcase_03 AC 42 ms
10,496 KB
testcase_04 AC 1,817 ms
10,624 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 237 ms
10,496 KB
testcase_08 AC 1,304 ms
10,752 KB
testcase_09 AC 1,732 ms
10,496 KB
testcase_10 AC 1,750 ms
10,752 KB
testcase_11 AC 779 ms
10,496 KB
testcase_12 AC 1,068 ms
10,496 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