結果

問題 No.380 悪の台本
コンテスト
ユーザー ntuda
提出日時 2025-11-29 12:29:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 911 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,900 KB
最終ジャッジ日時 2025-11-29 12:29:14
合計ジャッジ時間 1,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other AC * 1 WA * 4 RE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
def check(T):
    for t in T:
        if t.isalnum():
            return True
    else:
        return False

ansstr = ["WRONG!","CORRECT (maybe)"]
dic = {"digi":"nyo","petit":"nyu","rabi":"","gema":"gema","piyo":"pyo"}
lines = sys.stdin.readlines()
for S in lines:
    ss = S.split()
    if len(ss) == 1:
        ans = 0
    elif ss[0] not in dic:
        ans = 0
    elif ss[0] == "rabi":
        if check(S[4:]):
            ans = 1
        else:
            ans = 0
    else:
        S = S.rstrip()
        n = len(S)
        a = (S.lower()).rfind(dic[ss[0]])
        if a == -1:
            ans = 0
            b = n-a-len(dic[ss[0]])
            if b == 0:
                ans = 1
            elif b <= 3:
                if check(S[-b:].rstrip()):
                    ans = 0
                else:
                    ans = 1
            else:
                ans = 0
    print(ansstr[ans])


0