結果

問題 No.2373 wa, wo, n
ユーザー nwonwo
提出日時 2023-06-16 19:00:42
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,148 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-07-02 11:26:39
合計ジャッジ時間 22,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,032 KB
testcase_01 AC 93 ms
12,032 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 92 ms
11,904 KB
testcase_04 AC 95 ms
12,032 KB
testcase_05 AC 94 ms
12,160 KB
testcase_06 AC 91 ms
12,032 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 89 ms
12,032 KB
testcase_11 AC 90 ms
12,160 KB
testcase_12 AC 88 ms
12,032 KB
testcase_13 AC 91 ms
12,032 KB
testcase_14 AC 1,011 ms
67,072 KB
testcase_15 AC 238 ms
20,864 KB
testcase_16 AC 1,098 ms
72,192 KB
testcase_17 AC 350 ms
28,032 KB
testcase_18 AC 114 ms
13,696 KB
testcase_19 AC 303 ms
33,664 KB
testcase_20 AC 572 ms
64,256 KB
testcase_21 AC 289 ms
32,512 KB
testcase_22 AC 414 ms
46,080 KB
testcase_23 AC 647 ms
73,344 KB
testcase_24 AC 89 ms
12,032 KB
testcase_25 AC 89 ms
12,160 KB
testcase_26 AC 89 ms
12,160 KB
testcase_27 AC 90 ms
12,160 KB
testcase_28 AC 87 ms
12,032 KB
testcase_29 AC 88 ms
12,160 KB
testcase_30 AC 87 ms
12,160 KB
testcase_31 AC 88 ms
12,032 KB
testcase_32 AC 1,228 ms
80,000 KB
testcase_33 AC 699 ms
78,720 KB
testcase_34 TLE -
testcase_35 AC 700 ms
78,592 KB
testcase_36 AC 1,106 ms
79,616 KB
testcase_37 AC 1,104 ms
79,616 KB
testcase_38 AC 1,095 ms
79,744 KB
testcase_39 AC 1,115 ms
79,488 KB
testcase_40 AC 1,130 ms
79,744 KB
testcase_41 AC 1,129 ms
79,616 KB
testcase_42 AC 1,292 ms
79,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
S = gets.chomp

dp = Array.new(N) { Array.new(26, false) }
if S[0] == '?'
  26.times { |j| dp[0][j] = true }
end
if S[0] == 'n'
  dp[0]['n'.ord - 'a'.ord] = true
end
if S[0] == 'w'
  dp[0]['w'.ord - 'a'.ord] = true
end
if S[0] == 'a' || S[0] == 'o'
  puts "No"
  exit
end

1.upto(N - 1) do |i|
  0.upto(25) do |j|
    if dp[i - 1][j]
      if j == 'w'.ord - 'a'.ord
        if S[i] == 'a'
          dp[i]['a'.ord - 'a'.ord] = true
        end
        if S[i] == 'o'
          dp[i]['o'.ord - 'a'.ord] = true
        end
        if S[i] == '?'
          dp[i]['a'.ord - 'a'.ord] = true
          dp[i]['o'.ord - 'a'.ord] = true
        end
      else
        if S[i] == 'w'
          dp[i]['w'.ord - 'a'.ord] = true
        end
        if S[i] == 'n'
          dp[i]['n'.ord - 'a'.ord] = true
        end
        if S[i] == '?'
          dp[i]['w'.ord - 'a'.ord] = true
          dp[i]['n'.ord - 'a'.ord] = true
        end
      end
    end
  end
end

ans = false
ans = true if dp[N - 1]['a'.ord - 'a'.ord]
ans = true if dp[N - 1]['o'.ord - 'a'.ord]
ans = true if dp[N - 1]['n'.ord - 'a'.ord]

if ans
  puts "Yes"
else
  puts "No"
end
0