結果

問題 No.380 悪の台本
ユーザー Coki628Coki628
提出日時 2020-09-29 16:56:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 1,000 ms
コード長 2,376 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 87,812 KB
実行使用メモリ 84,220 KB
最終ジャッジ日時 2023-09-17 03:12:11
合計ジャッジ時間 2,960 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
80,312 KB
testcase_01 AC 140 ms
80,304 KB
testcase_02 AC 140 ms
80,284 KB
testcase_03 AC 141 ms
80,256 KB
testcase_04 AC 186 ms
81,972 KB
testcase_05 AC 231 ms
84,220 KB
testcase_06 AC 188 ms
83,204 KB
testcase_07 AC 166 ms
82,512 KB
testcase_08 AC 146 ms
80,488 KB
testcase_09 AC 173 ms
81,680 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(m+1):
            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