結果

問題 No.2373 wa, wo, n
ユーザー shobonvipshobonvip
提出日時 2023-07-07 21:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 67,624 KB
最終ジャッジ日時 2024-07-21 17:16:37
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,172 KB
testcase_01 AC 37 ms
52,820 KB
testcase_02 AC 36 ms
52,928 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,672 KB
testcase_05 AC 36 ms
52,616 KB
testcase_06 AC 34 ms
52,304 KB
testcase_07 AC 35 ms
53,356 KB
testcase_08 AC 36 ms
52,616 KB
testcase_09 AC 36 ms
52,000 KB
testcase_10 AC 36 ms
52,376 KB
testcase_11 AC 37 ms
52,316 KB
testcase_12 AC 38 ms
52,136 KB
testcase_13 AC 36 ms
51,952 KB
testcase_14 AC 58 ms
67,624 KB
testcase_15 AC 51 ms
64,652 KB
testcase_16 AC 55 ms
67,364 KB
testcase_17 AC 51 ms
65,156 KB
testcase_18 AC 48 ms
63,024 KB
testcase_19 AC 48 ms
63,508 KB
testcase_20 AC 52 ms
65,256 KB
testcase_21 AC 49 ms
63,960 KB
testcase_22 AC 49 ms
64,840 KB
testcase_23 AC 53 ms
66,960 KB
testcase_24 AC 35 ms
52,452 KB
testcase_25 AC 36 ms
53,500 KB
testcase_26 AC 35 ms
52,644 KB
testcase_27 AC 36 ms
53,968 KB
testcase_28 AC 35 ms
53,052 KB
testcase_29 AC 36 ms
52,320 KB
testcase_30 AC 34 ms
52,272 KB
testcase_31 AC 35 ms
53,428 KB
testcase_32 AC 57 ms
67,372 KB
testcase_33 AC 54 ms
66,592 KB
testcase_34 AC 47 ms
63,300 KB
testcase_35 AC 49 ms
65,084 KB
testcase_36 AC 50 ms
64,736 KB
testcase_37 AC 46 ms
63,904 KB
testcase_38 AC 46 ms
63,300 KB
testcase_39 AC 46 ms
64,532 KB
testcase_40 AC 57 ms
67,584 KB
testcase_41 AC 55 ms
67,416 KB
testcase_42 AC 47 ms
64,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
dp0 = [0]*(n+1)
dp1 = [0]*(n+1)
dp0[0] = 1
for i in range(n):
	if s[i] == "w":
		if dp0[i]: dp1[i+1] = 1
	elif s[i] == "a" or s[i] == "o":
		if dp1[i]: dp0[i+1] = 1
	elif s[i] == "n":
		if dp0[i]: dp0[i+1] = 1
	elif s[i] == "?":
		if dp0[i]:
			dp1[i+1] = 1
			dp0[i+1] = 1
		if dp1[i]: dp0[i+1] = 1

if dp0[n]: print("Yes")
else: print("No")
0