結果

問題 No.380 悪の台本
ユーザー mkawa2mkawa2
提出日時 2020-08-13 23:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 1,806 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,196 KB
最終ジャッジ日時 2024-10-09 19:36:43
合計ジャッジ時間 1,420 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 64 ms
69,120 KB
testcase_05 AC 127 ms
77,828 KB
testcase_06 AC 94 ms
76,928 KB
testcase_07 AC 70 ms
80,196 KB
testcase_08 AC 44 ms
61,568 KB
testcase_09 AC 65 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    def ok(line):
        n=len(line)
        if n>=8 and line[:5]=="digi ":
            for _ in range(3):
                if line[-1].isalnum():break
                line=line[:-1]
            if line[-3:].lower()!="nyo":return False
        elif n>=9 and line[:6] == "petit ":
            for _ in range(3):
                if line[-1].isalnum():break
                line=line[:-1]
            if line[-3:].lower()!="nyu":return False
        elif n>=6 and line[:5]=="rabi ":
            for c in line[5:]:
                if c.isalnum():return True
            return False
        elif n>=8 and line[:5]=="gema ":
            for _ in range(3):
                if line[-1].isalnum():break
                line=line[:-1]
            if line[-4:].lower()!="gema":return False
        elif n>=8 and line[:5]=="piyo ":
            for _ in range(3):
                if line[-1].isalnum():break
                line=line[:-1]
            if line[-3:].lower()!="pyo":return False
        else:return False
        return True

    s=sys.stdin.read()[:-1]
    s=s.split("\n")
    for line in s:
        if ok(line):print("CORRECT (maybe)")
        else:print("WRONG!")

main()
0