結果

問題 No.2373 wa, wo, n
ユーザー miho-4miho-4
提出日時 2023-07-07 22:01:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 86,860 KB
最終ジャッジ日時 2024-07-21 18:01:58
合計ジャッジ時間 4,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 82 ms
75,008 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 35 ms
51,456 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 80 ms
75,164 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 95 ms
85,248 KB
testcase_24 AC 82 ms
75,008 KB
testcase_25 RE -
testcase_26 AC 81 ms
75,008 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 AC 35 ms
51,968 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 93 ms
86,528 KB
testcase_36 AC 86 ms
86,480 KB
testcase_37 AC 73 ms
86,400 KB
testcase_38 AC 74 ms
86,144 KB
testcase_39 AC 88 ms
85,888 KB
testcase_40 WA -
testcase_41 RE -
testcase_42 AC 76 ms
86,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=list(input())[::-1]

cnt=3*10**5
while 1<len(s):
  cnt-=1
  if cnt==0:exit(print("No"))
  x="".join(s[-2:])[::-1]
  while x=="??":
    s.pop()
  if x=="wa" or x=="wo" or x=="w?" or x=="?a" or x=="?o" or x=="?n":
    s.pop()
    s.pop()
  elif x[0]=="n":
    s.pop()
if s==[] or s==["?"] or s==["n"]:
  print("Yes")
else:
  print("No")
  
0