結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | ぷら |
提出日時 | 2020-07-31 21:50:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 679 bytes |
コンパイル時間 | 1,368 ms |
コンパイル使用メモリ | 167,796 KB |
実行使用メモリ | 42,420 KB |
最終ジャッジ日時 | 2024-07-06 17:40:49 |
合計ジャッジ時間 | 13,134 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,183 ms
42,220 KB |
testcase_01 | AC | 1,207 ms
42,244 KB |
testcase_02 | WA | - |
testcase_03 | AC | 946 ms
42,284 KB |
testcase_04 | AC | 732 ms
42,248 KB |
testcase_05 | AC | 1,093 ms
42,280 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 108 ms
42,216 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 108 ms
42,256 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long typedef pair<int,int> P; int INF = 1e16+7; int mod = 1e9+7; int dx[4] = {1, 0, -1, 0}; int dy[4] = {0, 1, 0, -1}; signed main() { vector<int>cnt(5000005,true); cnt[0] = cnt[1] = false; for(int i = 2; i <= 5000005; i++) { if(!cnt[i]) { continue; } for(int j = i*2; j <= 5000005; j+=i) { cnt[j] = false; } } int T; cin >> T; for(int i = 0; i < T; i++) { int A,P; cin >> A >> P; if(!cnt[P]) { cout << -1 << endl; continue; } cout << (int)pow(A,0)%P << endl; } }