結果
問題 | No.2324 Two Countries within UEC |
ユーザー | Haa |
提出日時 | 2023-05-28 13:56:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,174 bytes |
コンパイル時間 | 1,670 ms |
コンパイル使用メモリ | 167,448 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 04:22:21 |
合計ジャッジ時間 | 8,605 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 243 ms
5,248 KB |
testcase_01 | AC | 257 ms
5,376 KB |
testcase_02 | AC | 47 ms
5,376 KB |
testcase_03 | AC | 188 ms
5,376 KB |
testcase_04 | AC | 218 ms
5,376 KB |
testcase_05 | AC | 49 ms
5,376 KB |
testcase_06 | AC | 88 ms
5,376 KB |
testcase_07 | AC | 40 ms
5,376 KB |
testcase_08 | AC | 190 ms
5,376 KB |
testcase_09 | AC | 196 ms
5,376 KB |
testcase_10 | AC | 256 ms
5,376 KB |
testcase_11 | AC | 254 ms
5,376 KB |
testcase_12 | AC | 79 ms
5,376 KB |
testcase_13 | AC | 78 ms
5,376 KB |
testcase_14 | AC | 46 ms
5,376 KB |
testcase_15 | AC | 41 ms
5,376 KB |
testcase_16 | AC | 171 ms
5,376 KB |
testcase_17 | AC | 110 ms
5,376 KB |
testcase_18 | AC | 51 ms
5,376 KB |
testcase_19 | AC | 256 ms
5,376 KB |
testcase_20 | AC | 34 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 226 ms
5,376 KB |
testcase_23 | AC | 72 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 260 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
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 | 3 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(int i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;}; template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;}; constexpr ll MOD=998244353; constexpr ll INF=2e18; ll extgcd(ll a, ll b, ll &x, ll &y) { if(b==0){ x=1; y=0; return a; } ll gcd=extgcd(b,a%b,x,y); ll oldX=x; x=y; y=oldX-a/b*y; return gcd; } P crt2(ll b1, ll m1, ll b2, ll m2){ ll x, y; ll d=extgcd(m1,m2,x,y); if((b2-b1)%d!=0) return {0,-1}; else{ ll m=m1*(m2/d); return {((b1+((b2-b1)/d)*x%(m2/d)*m1)%m+m)%m,m}; } } int main(){ ll n, m, p, q; cin >> n >> m >> p >> q; ll x, f; REP(i,q){ cin >> x >> f; P r=crt2(f,p,0,x); if(r.second==-1||r.first/x>m) cout << 0 << endl; else{ ll k=m-r.first/x; cout << k/p+(r.first!=0) << endl; } } return 0; }