結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | chielo |
提出日時 | 2020-07-31 21:31:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 613 bytes |
コンパイル時間 | 1,544 ms |
コンパイル使用メモリ | 165,084 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-07-06 16:32:32 |
合計ジャッジ時間 | 4,762 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 190 ms
16,000 KB |
testcase_01 | AC | 188 ms
16,000 KB |
testcase_02 | AC | 196 ms
15,872 KB |
testcase_03 | AC | 153 ms
16,000 KB |
testcase_04 | AC | 132 ms
16,000 KB |
testcase_05 | AC | 175 ms
16,000 KB |
testcase_06 | WA | - |
testcase_07 | AC | 198 ms
16,000 KB |
testcase_08 | AC | 61 ms
15,872 KB |
testcase_09 | AC | 59 ms
15,872 KB |
testcase_10 | AC | 59 ms
16,000 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <bits/stdc++.h> const int maxp = 1e7 + 3; int p[maxp], pl; bool isc[maxp]; int main() { for(int i = 2; i < maxp; ++i) { if(!isc[i]) p[pl++] = i; for(int j = 0; j < pl && i * (long long)p[j] < maxp; ++j) { isc[i * p[j]] = true; if(i % p[j] == 0) break; } } int t; scanf("%d", &t); while(t--) { long long a; int p; scanf("%lld%d", &a, &p); if(isc[p]) puts("-1"); else if(a % p != 0) puts("1"); else puts("0"); } return 0; }