結果
問題 | No.969 じゃんけん |
ユーザー | mhrb_minase |
提出日時 | 2020-01-17 21:41:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 1,794 bytes |
コンパイル時間 | 929 ms |
コンパイル使用メモリ | 100,460 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 19:10:00 |
合計ジャッジ時間 | 1,426 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
ソースコード
#include<algorithm>#include<bitset>#include<cassert>#include<cfloat>#include<climits>#include<cmath>#include<deque>#include<functional>#include<iomanip>#include<iostream>#include<map>#include<queue>#include<set>#include<stack>#include<string>#include<unordered_map>#include<unordered_set>#include<utility>#include<vector>using namespace std;using lint = long long;using P = pair<int, int>;using LLP = pair<long long, long long>;#define REP(i, x, n) for(int i = (x), i##_len = (int)(n) ; i < i##_len ; ++i)#define rep(i, n) for(int i = 0, i##_len = (int)(n) ; i < i##_len ; ++i)#define reps(i, n) for(int i = 1, i##_len = (int)(n) ; i <= i##_len ; ++i)#define rrep(i, n) for(int i = (int)(n) - 1 ; i >= 0 ; --i)#define rreps(i, n) for(int i = (int)(n) ; i > 0 ; --i)#define SORT(x) sort((x).begin(), (x).end())#define SORT_INV(x) sort((x).rbegin(), (x).rend())#define REVERSE(x) reverse((x).begin(), (x).end())#define TWINS(x) cout << ((x) ? "Yay!" : ":(") << '\n'#define endl '\n'constexpr int IINF = (1 << 30) - 1;constexpr long long LLINF = 1LL << 61;constexpr double EPS = 1e-10;constexpr int dx4[] = {1, 0, -1, 0}, dy4[] = {0, 1, 0, -1};constexpr int dx8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dy8[] = {0, -1, -1, -1, 0, 1, 1, 1};template<typename T>bool chmax(T& a, T b){if(a < b){a = b;return true;}return false;}template<typename T>bool chmin(T& a, T b){if(b < a){a = b;return true;}return false;}int main(){cin.tie(0);ios::sync_with_stdio(false);cout << fixed << setprecision(10);int x;cin >> x;if(x == 0 || x == 4 || x == 10){cout << "Yes" << endl;}else{cout << "No" << endl;}cout << flush;return 0;}