結果
問題 | No.1161 Many Powers |
ユーザー | chacoder1 |
提出日時 | 2021-05-30 00:08:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 668 bytes |
コンパイル時間 | 2,074 ms |
コンパイル使用メモリ | 201,576 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 14:37:40 |
合計ジャッジ時間 | 3,895 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 81 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<n;i++) #define int long long int pow_mod(long long n,long long m,long long p){ if(p==0) return 1; else if(p%2==1){ return pow_mod(n,m,p-1)*n%m; } else{ long long t=pow_mod(n,m,p/2); return t*t%m; } } signed main(){ ll a,b,c; cin>>a>>b>>c; vector<int>d(c,0); rep(i,c){ int temp=0; if(a%c>=i && i != 0) temp=1; else temp=0; d[i]=a/c+temp; } //rep(i,c) cout<<i<<" "<<d[i]<<endl; ll ans=0; rep(i,c){ int temp=d[i]*=(i%c); temp%=c; ans+=pow_mod(d[i],c,b); ans%=c; } cout<<ans<<endl; return 0; }