結果
問題 | No.1728 [Cherry 3rd Tune] Bullet |
ユーザー | umezo |
提出日時 | 2021-10-30 00:09:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,072 bytes |
コンパイル時間 | 2,511 ms |
コンパイル使用メモリ | 221,540 KB |
実行使用メモリ | 790,564 KB |
最終ジャッジ日時 | 2024-10-07 13:11:03 |
合計ジャッジ時間 | 7,107 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,768 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 141 ms
32,000 KB |
testcase_06 | AC | 488 ms
39,808 KB |
testcase_07 | AC | 213 ms
27,008 KB |
testcase_08 | MLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; const int MOD=1e9+7; ll modpow(ll x,ll n){ ll ans=1; while(n){ if(n&1) ans=ans*x%MOD; x=x*x%MOD; n/=2; } return ans; } vector<ll> divisor(ll x){ set<ll> s; for(ll i=1;i*i<=x;i++){ if(x%i==0){ s.insert(i); s.insert(x/i); } } vector<ll> res; for(auto y:s) res.push_back(y); sort(ALL(res)); reverse(ALL(res)); return res; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; cin>>t; while(t--){ ll n,c; cin>>n>>c; ll ans=modpow(c,n)*n%MOD; vector<ll> A=divisor(n); map<ll,ll> m; ll cnt=0; for(auto t:A){ if(t==1){ ans=(ans+(n-cnt)*modpow(c,2)%MOD)%MOD; break; } ll tmp=n/t; for(int i=2*t;i<=n;i+=t) tmp-=m[i]; ans=(ans+tmp*modpow(c,2*t)%MOD)%MOD; m[t]=tmp; cnt+=tmp; } cout<<ans*modpow(2*n,MOD-2)%MOD<<endl; } return 0; }