結果

問題 No.653 E869120 and Lucky Numbers
ユーザー hiroakiehiroakie
提出日時 2018-02-25 21:28:13
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 58,584 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 10:15:02
合計ジャッジ時間 1,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstring>
#include <sstream>
using namespace std;

string v;
bool st = false;
int main() {
	cin >> v;
	for (int i = v.size() - 1; i >= 0; i--) {
		if (i == 0) {
			if (v[i] == '0'||v[i]=='6'||v[i]=='7')cout << "Yes";
			else cout << "No";
			break;
		}
		if (v[i] >= '2'&&v[i] <= '4')v[i - 1]--;
		else if (v[i] == '6' || v[i] == '7') {
			for (; i >= 0; i--) {
				if (v[i] != '6'&&v[i] != '7') { cout << "No"; goto no; }
			}
			cout << "Yes";
		no:;
		}
		else { cout << "No"; }
	}
	cout << endl;
	return 0;
}
0