結果

問題 No.380 悪の台本
ユーザー vorg101
提出日時 2016-06-18 00:00:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,412 KB
最終ジャッジ日時 2024-11-06 22:46:40
合計ジャッジ時間 1,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 2 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

import string
import sys
L = sys.stdin.readlines()
phrase = {'digi': 'nyo', 'petit': 'nyu', 'gema': 'gema', 'piyo': 'pyo'}
for l in L:
    flag = False
    name, serif = l.split(' ')[0], ''.join(l.split(' ')[1:]).lower()
    for n, f in phrase.items():
        length = len(f)
        if name == n and f in serif[-length-4:]:
            t = ''.join(list(filter(lambda c: c in string.ascii_letters, serif[-length-4:])))
            if t[-length:] == f:
                flag = True
        else:
            continue
    if name == 'rabi' and len(list(filter(lambda c: c in string.ascii_letters, serif))) != 0:
        flag = True
    if flag:
        print('CORRECT (maybe)')
    else:
        print('WRONG!')
0