結果
問題 | No.1966 Median of Divisors |
ユーザー | Nzt3 |
提出日時 | 2022-06-03 22:49:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 536 bytes |
コンパイル時間 | 1,728 ms |
コンパイル使用メモリ | 168,508 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 03:06:45 |
合計ジャッジ時間 | 3,246 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 60 ms
6,944 KB |
testcase_05 | AC | 68 ms
6,940 KB |
testcase_06 | AC | 66 ms
6,944 KB |
testcase_07 | AC | 9 ms
6,944 KB |
testcase_08 | AC | 43 ms
6,940 KB |
testcase_09 | AC | 57 ms
6,940 KB |
testcase_10 | AC | 57 ms
6,944 KB |
testcase_11 | AC | 25 ms
6,944 KB |
testcase_12 | AC | 34 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int mod=1e9+7; long long modpow(int a,int n){ long long ret=1,t=a; for(int i=0;i<30;i++){ if(n>>i&1)ret=ret*t%mod; t=t*t%mod; } return ret; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int T; cin>>T; const int inv6=modpow(6,mod-2),inv2=modpow(2,mod-2); while(T--){ long long N,M; cin>>N>>M; long long k=modpow(N,M),k2=modpow(N,M/2); cout<<((k*(k+1)%mod*inv2%mod-k2*(k2+1)%mod*(k2*2+1)%mod*inv6%mod)%mod+mod)%mod<<'\n'; } }