結果

問題 No.2324 Two Countries within UEC
ユーザー hiro71687khiro71687k
提出日時 2023-06-07 23:44:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 597 bytes
コンパイル時間 3,627 ms
コンパイル使用メモリ 262,504 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-09 14:29:47
合計ジャッジ時間 11,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 203 ms
6,816 KB
testcase_01 AC 232 ms
6,944 KB
testcase_02 AC 38 ms
6,940 KB
testcase_03 AC 157 ms
6,940 KB
testcase_04 AC 180 ms
6,940 KB
testcase_05 AC 41 ms
6,940 KB
testcase_06 AC 73 ms
6,944 KB
testcase_07 AC 35 ms
6,940 KB
testcase_08 AC 155 ms
6,940 KB
testcase_09 AC 162 ms
6,940 KB
testcase_10 AC 211 ms
6,940 KB
testcase_11 AC 214 ms
6,940 KB
testcase_12 AC 65 ms
6,940 KB
testcase_13 AC 67 ms
6,940 KB
testcase_14 AC 41 ms
6,944 KB
testcase_15 AC 33 ms
6,940 KB
testcase_16 AC 143 ms
6,940 KB
testcase_17 AC 94 ms
6,940 KB
testcase_18 AC 42 ms
6,944 KB
testcase_19 AC 216 ms
6,940 KB
testcase_20 AC 28 ms
6,940 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 213 ms
6,940 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 1 ms
6,944 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 RE -
testcase_42 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=20000000000000;
ll mod=998244353;
int main(){
    ll n,m,p,q;
    cin >> n >> m >> p >> q;
    vector<ll>a;
    for (ll i = 0; i < q; i++)
    {
        ll x,f;
        cin >> x >> f;
        ll z=f*inv_mod(x,p);
        z%=p;
        ll ans=m/p;
        if (z<=m%p&&z!=0)
        {
            ans++;
        }
        a.push_back(ans);
    }
    for (ll i = 0; i < a.size(); i++)
    {
        cout << a[i] <<endl;
    }
    
}
0