結果

問題 No.3041 なんとかのはなうらない
ユーザー TlapesiumTlapesium
提出日時 2019-04-01 21:56:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 1,724 ms
コンパイル使用メモリ 201,336 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 04:44:35
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
constexpr int INF = 2147483647;
constexpr long long int INF_LL = 9223372036854775807;
constexpr int MOD = 1000000007;
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;


int main(int argc, char* argv[]) {
	int N;
	cin >> N;
	vector<int> dp(N, 1);
	dp[N - 1] = 0;
	for (int i = N - 1; i >= 3; i--) {
		if (dp[i] == 0) {
			dp[i - 1] = dp[i - 2] = dp[i - 3] = 1;
		}
		else {
			if(i != 3)dp[i - 4] = 0;
		}
	}
	if ((N % 2 == 1 && !dp[0]) || (N % 2 == 0 && dp[0])) {
		cout << "Yes" << endl;
	}
	else {
		cout << "No" << endl;
	}
}
0