結果

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

ソースコード

diff #

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