結果
問題 | No.1955 Not Prime |
ユーザー | ruthen |
提出日時 | 2022-05-20 21:48:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,590 bytes |
コンパイル時間 | 2,768 ms |
コンパイル使用メモリ | 220,964 KB |
実行使用メモリ | 27,136 KB |
最終ジャッジ日時 | 2024-09-20 07:49:12 |
合計ジャッジ時間 | 4,383 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
5,248 KB |
testcase_01 | AC | 10 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 10 ms
5,376 KB |
testcase_05 | AC | 10 ms
5,376 KB |
testcase_06 | AC | 13 ms
5,376 KB |
testcase_07 | AC | 45 ms
5,376 KB |
testcase_08 | AC | 39 ms
5,376 KB |
testcase_09 | AC | 64 ms
5,376 KB |
testcase_10 | AC | 60 ms
5,376 KB |
testcase_11 | AC | 82 ms
27,136 KB |
testcase_12 | AC | 25 ms
5,376 KB |
testcase_13 | AC | 64 ms
5,376 KB |
testcase_14 | AC | 20 ms
5,376 KB |
testcase_15 | AC | 19 ms
5,376 KB |
testcase_16 | AC | 33 ms
5,376 KB |
testcase_17 | AC | 57 ms
6,264 KB |
testcase_18 | AC | 65 ms
5,376 KB |
testcase_19 | AC | 66 ms
5,760 KB |
testcase_20 | AC | 10 ms
5,376 KB |
testcase_21 | AC | 27 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 10 ms
5,376 KB |
testcase_24 | AC | 10 ms
5,376 KB |
testcase_25 | AC | 11 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef _RUTHEN #include "debug.hpp" #else #define show(...) true #endif vector<bool> Era(int n) { vector<bool> isprime(n + 1, 1); isprime[0] = 0; isprime[1] = 0; for (int i = 2; i < n + 1; i++) { if (isprime[i]) { for (int j = 2 * i; j < n + 1; j += i) isprime[j] = 0; } } return isprime; } #include <atcoder/twosat> using ll = long long; #define rep(i, n) for (int i = 0; i < (n); i++) template <class T> using V = vector<T>; int main() { ios::sync_with_stdio(false); cin.tie(0); auto era = Era(1000000); int N; cin >> N; V<string> A(N), B(N); rep(i, N) cin >> A[i] >> B[i]; atcoder::two_sat ts(2 * N); rep(i, N) ts.add_clause(i, true, i + N, true); rep(i, N) ts.add_clause(i, false, i + N, false); rep(i, N) { rep(j, i) { if (era[stoi(A[i] + A[j])]) ts.add_clause(i, false, j, true); if (era[stoi(A[i] + B[j])]) ts.add_clause(i, false, j + N, true); if (era[stoi(B[i] + A[j])]) ts.add_clause(i + N, false, j, true); if (era[stoi(B[i] + B[j])]) ts.add_clause(i + N, false, j + N, true); if (era[stoi(A[j] + A[i])]) ts.add_clause(j, false, i, true); if (era[stoi(A[j] + B[i])]) ts.add_clause(j, false, i + N, true); if (era[stoi(B[j] + A[i])]) ts.add_clause(j + N, false, i, true); if (era[stoi(B[j] + B[i])]) ts.add_clause(j + N, false, i + N, true); } } cout << (ts.satisfiable() ? "Yes" : "No") << '\n'; return 0; }