結果

問題 No.380 悪の台本
ユーザー vorg101vorg101
提出日時 2016-06-17 22:58:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 681 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,532 KB
最終ジャッジ日時 2024-04-24 14:16:59
合計ジャッジ時間 1,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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