結果
問題 | No.2324 Two Countries within UEC |
ユーザー | highlighter |
提出日時 | 2023-05-28 13:59:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 705 bytes |
コンパイル時間 | 1,901 ms |
コンパイル使用メモリ | 178,512 KB |
実行使用メモリ | 1,042,248 KB |
最終ジャッジ日時 | 2024-12-26 22:41:06 |
合計ジャッジ時間 | 98,286 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | TLE | - |
testcase_22 | WA | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | MLE | - |
testcase_26 | TLE | - |
testcase_27 | MLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 1 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 2 ms
5,248 KB |
testcase_36 | AC | 1 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long vector<int> power_sub(int a,int c){ vector<int> ans(31); ans[0]=a%c; for(int i=1;i<=30;i++){ ans[i]=ans[i-1]*ans[i-1]%c; } return ans; } int power(int a,int b,int c){ int ans=1; vector<int> vec=power_sub(a,c); bitset<31> x(b); for(int i=0;i<=30;i++){ if(x[i]==1){ ans*=vec[i]; ans%=c; } } return ans; } signed main() { int N,M,P,Q; cin >> N >> M >> P >> Q; map<int,int> data; for(int i=1;i<=M;i++){ data[i%P]++; } for(int i=0;i<Q;i++){ int x,f; cin >> x >> f; int y=power(x,P-2,P); y*=f; y%=P; cout << data[y] << endl; } }