結果

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

ソースコード

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
        else:
            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