結果

問題 No.2324 Two Countries within UEC
ユーザー hiro71687khiro71687k
提出日時 2023-06-07 23:44:05
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 597 bytes
コンパイル時間 5,038 ms
コンパイル使用メモリ 261,832 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 05:24:45
合計ジャッジ時間 13,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
5,248 KB
testcase_01 AC 263 ms
5,248 KB
testcase_02 AC 48 ms
5,248 KB
testcase_03 AC 194 ms
5,248 KB
testcase_04 AC 231 ms
5,248 KB
testcase_05 AC 49 ms
5,248 KB
testcase_06 AC 90 ms
5,248 KB
testcase_07 AC 43 ms
5,248 KB
testcase_08 AC 195 ms
5,248 KB
testcase_09 AC 201 ms
5,248 KB
testcase_10 AC 266 ms
5,248 KB
testcase_11 AC 257 ms
5,248 KB
testcase_12 AC 78 ms
5,248 KB
testcase_13 AC 80 ms
5,248 KB
testcase_14 AC 49 ms
5,248 KB
testcase_15 AC 43 ms
5,248 KB
testcase_16 AC 177 ms
5,248 KB
testcase_17 AC 113 ms
5,248 KB
testcase_18 AC 51 ms
5,248 KB
testcase_19 AC 265 ms
5,248 KB
testcase_20 AC 36 ms
5,248 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 265 ms
5,248 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 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 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 3 ms
5,248 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