結果

問題 No.2324 Two Countries within UEC
ユーザー shobonvipshobonvip
提出日時 2023-05-28 13:40:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 4,135 ms
コンパイル使用メモリ 261,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-08 03:55:38
合計ジャッジ時間 11,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
5,248 KB
testcase_01 AC 269 ms
5,248 KB
testcase_02 AC 47 ms
5,376 KB
testcase_03 AC 198 ms
5,376 KB
testcase_04 AC 227 ms
5,376 KB
testcase_05 AC 53 ms
5,376 KB
testcase_06 AC 93 ms
5,376 KB
testcase_07 AC 41 ms
5,376 KB
testcase_08 AC 199 ms
5,376 KB
testcase_09 AC 198 ms
5,376 KB
testcase_10 AC 264 ms
5,376 KB
testcase_11 AC 255 ms
5,376 KB
testcase_12 AC 83 ms
5,376 KB
testcase_13 AC 79 ms
5,376 KB
testcase_14 AC 48 ms
5,376 KB
testcase_15 AC 41 ms
5,376 KB
testcase_16 AC 173 ms
5,376 KB
testcase_17 AC 118 ms
5,376 KB
testcase_18 AC 53 ms
5,376 KB
testcase_19 AC 263 ms
5,376 KB
testcase_20 AC 35 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 263 ms
5,376 KB
testcase_26 AC 195 ms
5,376 KB
testcase_27 AC 192 ms
5,376 KB
testcase_28 AC 194 ms
5,376 KB
testcase_29 AC 180 ms
5,376 KB
testcase_30 AC 195 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

ll mod_pow(ll x, ll m, int P){
	ll ret = 1;
	ll tmp = x;
	while (m > 0){
		if (m&1){
			ret = ret * tmp % P;
		}
		m >>= 1;
		tmp = tmp * tmp % P;
	}
	return ret;
}

int main(){
	ll n, m, p; cin >> n >> m >> p;
	int q; cin >> q;
	ll base = m / p;
	ll amari = m % p;
	for (int i=0; i<q; i++){
		ll x, f; cin >> x >> f;
		if (x % p == 0){
			if (f == 0){
				cout << m << "\n";
			}else{
				cout << 0 << "\n";
			}
		}else{
			ll tar = mod_pow(x % p, p-2, (int)p) * f % p;
			if ((tar - 1 + p) % p <= amari){
				cout << base + 1 << "\n";
			}else{
				cout << base << "\n";
			}
		}
	}
}
0