結果

問題 No.380 悪の台本
ユーザー Coki628Coki628
提出日時 2020-09-23 17:44:08
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,248 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 87,488 KB
実行使用メモリ 84,284 KB
最終ジャッジ日時 2023-09-10 07:22:09
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
80,288 KB
testcase_01 RE -
testcase_02 AC 141 ms
80,008 KB
testcase_03 AC 145 ms
80,220 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 148 ms
80,008 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from string import digits, ascii_letters

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c for j in range(b)] for i in range(a)]
def list3d(a, b, c, d): return [[[d for k in range(c)] for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e for l in range(d)] for k in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10**9)
INF = 10**18
MOD = 10**9 + 7
EPS = 10**-10

def check1(S, keyword):
        s = S[-1]
        n = len(s)
        if n < 2:
            return False
        for i in range(3):
            if n-3-i < 0:
                break
            ss = s[n-3-i:]
            sl = ss[:3]
            sr = ss[3:]
            if sl.lower() == keyword.lower():
                for sss in sr:
                    if sss in digits or sss in ascii_letters:
                        break
                else:
                    return True
        return False

def check2(S):
    for s in S:
        for ss in s:
            if ss in digits or ss in ascii_letters:
                return True
    return False

for line in sys.stdin:
        name, *S = line.split()

        if name == 'digi':
            if check1(S, 'nyo'):
                print('CORRECT (maybe)')
            else:
                print('WRONG!')
        elif name == 'petit':
            if check1(S, 'nyu'):
                print('CORRECT (maybe)')
            else:
                print('WRONG!')
        elif name == 'gema':
            if check1(S, 'gema'):
                print('CORRECT (maybe)')
            else:
                print('WRONG!')
        elif name == 'piyo':
            if check1(S, 'pyo'):
                print('CORRECT (maybe)')
            else:
                print('WRONG!')
        elif name == 'rabi':
            if check2(S):
                print('CORRECT (maybe)')
            else:
                print('WRONG!')
        else:
            print('WRONG!')
0