結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | onsen_manjuuu |
提出日時 | 2020-08-01 01:04:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 1,526 ms |
コンパイル使用メモリ | 167,244 KB |
実行使用メモリ | 13,144 KB |
最終ジャッジ日時 | 2024-07-06 23:25:21 |
合計ジャッジ時間 | 10,228 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 769 ms
12,928 KB |
testcase_01 | AC | 768 ms
13,024 KB |
testcase_02 | AC | 812 ms
13,144 KB |
testcase_03 | AC | 649 ms
12,928 KB |
testcase_04 | AC | 506 ms
12,984 KB |
testcase_05 | AC | 751 ms
13,032 KB |
testcase_06 | WA | - |
testcase_07 | AC | 797 ms
13,056 KB |
testcase_08 | AC | 82 ms
13,056 KB |
testcase_09 | AC | 78 ms
12,928 KB |
testcase_10 | AC | 85 ms
12,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int MAX = 1e7; vector<char> prime(MAX+1); void f() { for(int i = 2; i <= MAX; i++) { if(prime[i])continue; for(int j = i + i; j <= MAX; j += i)prime[j] = true; } } void solve() { ll a, p; cin >> a >> p; if(prime[p]) { cout << -1 << endl; } else if(a % p == 0LL) { cout << 0 << endl; } else { cout << 1 << endl; } } int main() { cin.tie(0);ios::sync_with_stdio(0); f(); int T; cin >> T; while(T--)solve(); }