結果

問題 No.380 悪の台本
ユーザー ynyn
提出日時 2016-06-18 00:47:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,938 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-04-24 14:28:54
合計ジャッジ時間 1,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 260 ms
76,160 KB
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#http://yukicoder.me/submissions/98600
import sys
alp = [[chr(i) for i in range(65,65+26)], [chr(i) for i in range(97,97+26)]]

digi = ["nyo","Nyo","nYo","nyO","NYo","nYO","NyO","NYO"]
petit = ["nyu","Nyu","nYu","nyU","NYu","nYU","NyU","NYU"]
gema = ["gema","Gema","gEma","geMa","gemA","GEma","GeMa","GemA","gEMa","gEmA","geMA","GEMa","GEmA","GeMA","gEMA","GEMA"]
piyo = ["pyo","Pyo","pYo","pyO","PYo","pYO","PyO","PYO"]

while True:
    try:
        s = input()
    except:
        break
    ss = s.split()
    fdigi = True
    fpetit = True
    fgema = True
    fpiyo = True
    frabi = True

    if len(s) < 6:
        print("WRONG!")
        continue

    if ss[0] == "digi":
        for i in range(4):
            if len(s) - i - 7 >= 0 and s[i-7:i-4] in digi:
                print("CORRECT (maybe)")
                fdigi = False
                break
        if fdigi:
            print("WRONG!")

    elif ss[0] == "petit":
        for i in range(4):
            if len(s) - i-7 >= 0 and s[i-7:i-4] in petit:
                print("CORRECT (maybe)")
                fpetit = False
                break
        if fpetit:
            print("WRONG!")

    elif ss[0] == "gema":
        for i in range(4):
            if len(s) - i-7 >= 0 and s[i-7:i-4] in gema:
                print("CORRECT (maybe)")
                fgema = False
                break
        if fgema:
            print("WRONG!")

    elif ss[0] == "piyo":
        for i in range(4):
            if len(s) - i-7 >= 0 and s[i-7:i-4] in piyo:
                print("CORRECT (maybe)")
                fpiyo = False
                break
        if fpiyo:
            print("WRONG!")

    else:
        cnt = 0
        for S in s:
            if S.isalpha():
                cnt += 1
                if cnt > 4:
                    print("CORRECT (maybe)")
                    frabi = False
                    break
        if frabi:
            print("WRONG!")
0