結果
問題 | No.1885 Flat Permutation |
ユーザー | gazelle |
提出日時 | 2022-03-25 21:56:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,345 bytes |
コンパイル時間 | 1,876 ms |
コンパイル使用メモリ | 199,436 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 05:52:27 |
合計ジャッジ時間 | 7,036 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 0 ms
5,248 KB |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | RE | - |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
ソースコード
#include <bits/stdc++.h> #define FOR(i, n, m) for (long long i = (n); i < (long long)(m); i++) #define REP(i, n) FOR(i, 0, n) #define ALL(v) v.begin(), v.end() #define YES(yes) \ cout << yes << endl; \ return 0; #define NO(no) \ cout << no << endl; \ return 0; #define pb push_back using namespace std; using ll = long long; using ld = long double; using P = pair<ll, ll>; constexpr ll inf = 1000000000; constexpr ll mod = 998244353; constexpr ld eps = 1e-6; template <typename T1, typename T2> ostream &operator<<(ostream &os, pair<T1, T2> p) { os << to_string(p.first) << " " << to_string(p.second); return os; } template <typename T> ostream &operator<<(ostream &os, vector<T> &v) { REP(i, v.size()) { if (i) os << " "; os << v[i]; } return os; } int main() { cin.tie(0); ios::sync_with_stdio(false); int n, x, y; cin >> n >> x >> y; if (x > y) swap(x, y); if (x + 1 == y) { if (n == 2) { cout << 1 << endl; return 0; } if (x == 1 && n % 2 == 1) { cout << 1 << endl; return 0; } if (y == n && n % 2 == 1) { cout << 1 << endl; return 0; } cout << 0 << endl; return 0; } assert(false); return 0; }