結果

問題 No.1966 Median of Divisors
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-01 12:55:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 202,572 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-01 12:55:34
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 198 ms
5,248 KB
testcase_05 AC 241 ms
5,248 KB
testcase_06 AC 231 ms
5,248 KB
testcase_07 AC 24 ms
5,248 KB
testcase_08 AC 139 ms
5,248 KB
testcase_09 AC 189 ms
5,248 KB
testcase_10 AC 188 ms
5,248 KB
testcase_11 AC 89 ms
5,248 KB
testcase_12 AC 116 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
const mint INV2 = ((mint)2).inv();
const mint INV6 = ((mint)6).inv();


int main(){
    int t;  cin >> t;
    
    for(int i = 0; i < t; ++i){
        int n, m;  cin >> n >> m;
        mint x = ((mint)n).pow(m);
        mint y = ((mint)n).pow(m / 2);
        mint ans = INV2 * x * (x + 1) - INV6 * y * (y + 1) * (2 * y + 1);
        cout << ans.val() << endl;
    }

    return 0;
}
0