結果
問題 | No.1829 Möbius Tunnelling |
ユーザー | Pres1dent |
提出日時 | 2022-02-04 22:29:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,430 bytes |
コンパイル時間 | 4,294 ms |
コンパイル使用メモリ | 261,036 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 12:06:09 |
合計ジャッジ時間 | 5,179 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" #include <unistd.h> using namespace std; #include "atcoder/all" using namespace atcoder; using i64 = long long; using uni64 = unsigned long long; using ld = long double; using i_i = pair<int, int>; using i_b = pair<int, bool>; using l_l = pair<i64, i64>; using d_d = pair<double, double>; using s_s = pair<string, string>; using i_i_i = tuple<int, int, int>; using i_i_i_i = tuple<int, int, int, int>; using l_l_l = tuple<i64, i64, i64>; using l_l_l_l = tuple<i64, i64, i64, i64>; #define rep(i, n) for(int i = 0; i < n; i++) #define ifbit(n,k) ((n>>k)&1) //if kth bit of n is on then true (sitakara, 0-indexed) #define zpad(i) cout << setfill('0') << setw(i) #define dout cout << fixed << setprecision(10) constexpr int INF = 2147483647; constexpr i64 I64F = 9223372036854775807; constexpr int m1007 = 1000000007; constexpr int m9982 = 998244353; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } int main() { int n; cin >> n; int a, b, c; cin >> a >> b >> c; if (c < a and a < b) { cout << "No" << endl; return 0; } if (c > a and a > b) { cout << "No" << endl; return 0; } if (b < a) { a = n - a + 1; b = n - b + 1; c = n - c + 1; } b = (b + n - a) % n; c = (c + n - a) % n; if (c >= b) cout << "Yes" << endl; else cout << "No" << endl; return 0; }