結果

問題 No.653 E869120 and Lucky Numbers
ユーザー startcpp
提出日時 2018-03-07 22:19:47
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 56,656 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-04 15:09:30
合計ジャッジ時間 1,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25 WA * 6
権限があれば一括ダウンロードができます

ソースコード

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