結果

問題 No.2373 wa, wo, n
ユーザー timitimi
提出日時 2023-07-08 18:55:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 112,204 KB
最終ジャッジ日時 2024-07-22 14:19:46
合計ジャッジ時間 4,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,760 KB
testcase_01 AC 36 ms
53,020 KB
testcase_02 AC 36 ms
52,252 KB
testcase_03 AC 35 ms
52,136 KB
testcase_04 AC 37 ms
52,616 KB
testcase_05 AC 36 ms
52,184 KB
testcase_06 AC 36 ms
52,356 KB
testcase_07 AC 36 ms
52,004 KB
testcase_08 AC 36 ms
53,292 KB
testcase_09 AC 35 ms
52,692 KB
testcase_10 AC 35 ms
52,344 KB
testcase_11 AC 36 ms
52,464 KB
testcase_12 AC 36 ms
53,140 KB
testcase_13 AC 36 ms
52,488 KB
testcase_14 AC 110 ms
97,748 KB
testcase_15 AC 66 ms
75,848 KB
testcase_16 AC 117 ms
100,228 KB
testcase_17 AC 80 ms
84,740 KB
testcase_18 AC 61 ms
70,016 KB
testcase_19 AC 83 ms
87,440 KB
testcase_20 AC 100 ms
97,092 KB
testcase_21 AC 80 ms
86,616 KB
testcase_22 AC 90 ms
90,768 KB
testcase_23 AC 111 ms
100,112 KB
testcase_24 AC 35 ms
52,344 KB
testcase_25 AC 36 ms
52,156 KB
testcase_26 AC 37 ms
52,132 KB
testcase_27 AC 36 ms
52,548 KB
testcase_28 AC 36 ms
53,164 KB
testcase_29 AC 36 ms
52,924 KB
testcase_30 AC 37 ms
52,128 KB
testcase_31 AC 37 ms
52,912 KB
testcase_32 AC 135 ms
103,112 KB
testcase_33 AC 112 ms
103,380 KB
testcase_34 AC 133 ms
112,204 KB
testcase_35 AC 71 ms
78,624 KB
testcase_36 AC 103 ms
96,232 KB
testcase_37 AC 93 ms
92,084 KB
testcase_38 AC 90 ms
92,336 KB
testcase_39 AC 116 ms
110,996 KB
testcase_40 AC 114 ms
96,284 KB
testcase_41 AC 116 ms
96,084 KB
testcase_42 AC 119 ms
107,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
D={}
for i in range(N):
  if S[i]=='?' or S[i]=='n':
    if i not in D:
      D[i]=[]
    D[i].append(i+1)

for i in range(N-1):
  a=S[i:i+2]
  if a=='wa' or a=='wo' or a=='w?' or a=='?o' or a=='?a' or a=='??':
    if i not in D:
      D[i]=[]
    D[i].append(i+2)
dp=[-1]*(N+1)
dp[0]=1
for i in range(N):
  if i in D and dp[i]==1:
    for nex in D[i]:
      dp[nex]=1
if dp[-1]==1:
  print('Yes')
else:
  print('No')
0