結果

問題 No.380 悪の台本
コンテスト
ユーザー ntuda
提出日時 2025-11-29 12:20:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 84,456 KB
最終ジャッジ日時 2025-11-29 12:20:12
合計ジャッジ時間 1,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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":
        for s in ss:
            if check(s):
                ans = 1
                break
        else:
            ans = 0
    else:
        S = S.rstrip()
        n = len(S)
        a = (S.lower()).rfind(dic[ss[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