結果

問題 No.380 悪の台本
ユーザー Coki628Coki628
提出日時 2020-09-29 17:00:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 1,000 ms
コード長 2,374 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 87,628 KB
実行使用メモリ 84,024 KB
最終ジャッジ日時 2023-09-17 03:17:59
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
80,384 KB
testcase_01 AC 155 ms
80,236 KB
testcase_02 AC 154 ms
80,388 KB
testcase_03 AC 154 ms
80,284 KB
testcase_04 AC 179 ms
82,056 KB
testcase_05 AC 239 ms
84,024 KB
testcase_06 AC 202 ms
82,996 KB
testcase_07 AC 181 ms
82,984 KB
testcase_08 AC 151 ms
80,472 KB
testcase_09 AC 178 ms
81,860 KB
権限があれば一括ダウンロードができます

ソースコード

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):
        n = len(s)
        m = len(keyword)
        if n < m:
            return False
        for i in range(4):
            if n-m-i < 0:
                break
            ss = s[n-m-i:]
            sl = ss[:m]
            sr = ss[m:]
            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:
    # splitするとよしなに空白が消されてしまうので、最初の空白だけ取得
    idx = line.find(' ')
    # 空白文字なし
    if idx == -1:
        print('WRONG!')
        continue
    name = line[:idx]
    S = line[idx+1:].strip()

    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