結果
問題 | No.1140 EXPotentiaLLL! |
ユーザー | boutarou |
提出日時 | 2020-08-02 12:48:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 1,739 ms |
コンパイル使用メモリ | 171,948 KB |
実行使用メモリ | 9,828 KB |
最終ジャッジ日時 | 2024-07-18 11:25:50 |
合計ジャッジ時間 | 13,125 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,179 ms
9,728 KB |
testcase_01 | AC | 1,160 ms
9,688 KB |
testcase_02 | WA | - |
testcase_03 | AC | 835 ms
8,576 KB |
testcase_04 | AC | 638 ms
7,552 KB |
testcase_05 | AC | 1,019 ms
9,684 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
/** * author: boutarou * created: 02.08.2020 12:43:46 **/ #include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < int(n); i++) using ll = long long; using P = pair<int, int>; int main() { int t; cin >> t; vector<ll> a(t); vector<int> p(t); int max_p = 1; rep(i, t) cin >> a[i] >> p[i]; rep(i, t) max_p = max(max_p, p[i]); vector<bool> check(max_p + 1, false); check[1] = true; for (int i = 2; i <= max_p; i++) { if (check[i]) continue; for(int j = 2 * i; j <= max_p; j += i) { check[j] = true; } } rep(i, t) { if (!check[p[i]]) cout << 1 << endl; else cout << -1 << endl; } return 0; }