結果

問題 No.2324 Two Countries within UEC
ユーザー highlighterhighlighter
提出日時 2023-05-28 14:01:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 721 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 176,648 KB
実行使用メモリ 977,344 KB
最終ジャッジ日時 2024-12-26 22:56:08
合計ジャッジ時間 98,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 TLE -
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 3 ms
5,248 KB
testcase_33 AC 17 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 2 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 3 ms
5,248 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

vector<int> power_sub(int a,int c){
    vector<int> ans(61);
    ans[0]=a%c;
    for(int i=1;i<=60;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<61> x(b);
    for(int i=0;i<=60;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;
		x%=P;
		f%=P;
		int y=power(x,P-2,P);
		y*=f;
		y%=P;
		cout << data[y] << endl;
	}
}
0