結果

問題 No.2373 wa, wo, n
ユーザー ThetaTheta
提出日時 2023-10-13 18:07:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 2,265 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-09-15 13:58:31
合計ジャッジ時間 3,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 RE -
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
11,008 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 103 ms
11,264 KB
testcase_15 AC 42 ms
10,880 KB
testcase_16 AC 110 ms
11,264 KB
testcase_17 AC 52 ms
10,880 KB
testcase_18 AC 33 ms
10,880 KB
testcase_19 AC 36 ms
11,008 KB
testcase_20 AC 46 ms
11,264 KB
testcase_21 AC 37 ms
11,008 KB
testcase_22 AC 40 ms
11,136 KB
testcase_23 AC 50 ms
11,264 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 31 ms
11,008 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 31 ms
10,880 KB
testcase_31 AC 31 ms
10,752 KB
testcase_32 AC 122 ms
11,520 KB
testcase_33 AC 50 ms
11,520 KB
testcase_34 AC 178 ms
11,392 KB
testcase_35 RE -
testcase_36 AC 116 ms
11,520 KB
testcase_37 AC 104 ms
11,392 KB
testcase_38 AC 105 ms
11,392 KB
testcase_39 AC 149 ms
11,264 KB
testcase_40 AC 116 ms
11,520 KB
testcase_41 AC 118 ms
11,264 KB
testcase_42 AC 106 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from re import compile
import sys


def printe(*args, end="\n"):
    print(*args, end=end, file=sys.stderr)


def main():
    N = int(input())
    S = input()
    ctr = Counter(S)
    if len(S) > ctr["w"] + ctr["a"] + ctr["o"] + ctr["n"] + ctr["?"]:
        print("No")
        printe(S[idx - 10:idx + 10])
        return

    idx = 0
    while idx < N:
        if idx == N - 1:
            if S[idx] in ("?", "n"):
                print("Yes")
            else:
                print("No")
                printe(S[idx - 10:idx + 10])
            return

        if idx == N - 2:
            if S[idx] == "w":
                if S[idx + 1] in ("a", "o", "?"):
                    print("Yes")
                else:
                    print("No")
                    printe(S[idx - 10:idx + 10])
                return
            if S[idx] in ("a", "o"):
                print("No")
                printe(S[idx - 10:idx + 10])
                return
            if S[idx] == "n":
                if S[idx + 1] in ("n", "?"):
                    print("Yes")
                else:
                    print("No")
                    printe(S[idx - 10:idx + 10])
                return
            if S[idx] == "?":
                if S[idx + 1] == "w":
                    print("No")
                    printe(S[idx - 10:idx + 10])
                else:
                    print("Yes")
                return

        l_1, l_2, l_3 = S[idx:idx + 3]
        if l_1 in ("a", "o"):
            print("No")
            printe(S[idx - 10:idx + 10])
            return
        if l_1 == "n":
            idx += 1
            continue
        if l_1 == "w":
            if l_2 in ("a", "o", "?"):
                idx += 2
                continue
            print("No")
            printe(S[idx - 10:idx + 10])
            return
        if l_1 == "?":
            if l_2 == "w":
                idx += 1
                continue
            if l_2 != "?":
                idx += 2
                continue
            if l_3 == "w":
                idx += 2
                continue
            if l_3 in ("a", "o", "n"):
                idx += 3
                continue
            idx += 1


if __name__ == "__main__":
    main()
0