結果

問題 No.653 E869120 and Lucky Numbers
ユーザー startcppstartcpp
提出日時 2018-03-07 22:19:47
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 55,576 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-15 04:14:10
合計ジャッジ時間 1,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 WA -
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//2つのラッキーナンバーを上の桁から決めていく桁DP
#include <iostream>
#include <string>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

string p;
bool dp[20001][2];	//dp[i][j] = 今までにi桁見ていて, 余りがj
int wa[6] = {0, 6, 7, 12, 13, 14};	//wa = {0, 6, 7} + {0, 6, 7}の集合

int main() {
	int i, j, k;
	
	cin >> p;
	
	dp[0][0] = true;
	rep(i, p.size()) {
		rep(j, 2) {
			if (!dp[i][j]) continue;
			int v = 10 * j + (p[i] - '0');
			rep(k, 6) {
				if (v - wa[k] != 0 && v - wa[k] != 1) continue;
				dp[i + 1][v - wa[k]] = true;
			}
		}
	}
	if (dp[p.size()][0]) cout << "Yes" << endl;
	else cout << "No" << endl;
	return 0;
}
0