結果
問題 | No.2324 Two Countries within UEC |
ユーザー |
![]() |
提出日時 | 2023-09-26 23:56:59 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 827 bytes |
コンパイル時間 | 1,876 ms |
コンパイル使用メモリ | 192,828 KB |
最終ジャッジ日時 | 2025-02-17 02:34:03 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 17 WA * 24 |
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> #include<string> using ll = long long; using namespace std; int main() { ll n, m, p, q; cin >> n >> m >> p >> q; for (int i = 0; i < q; i++){ ll x, f, x1 = 1, p1, y; cin >> x >> f; if (!(x%p) && f == 0){ cout << m << endl; continue; } else if (!(x%p)){ cout << 0 << endl; continue; } p1 = p - 2; while (p1){ if (p1 & 1) x1 *= x; x *= x; x %= p; p1 >>= 1; } x1 %= p; y = x1 * f % p; if (!y) cout << m/p << "\n"; else cout << (m - y + p)/p << "\n"; } }