結果

問題 No.380 悪の台本
ユーザー vorg101vorg101
提出日時 2016-06-18 01:10:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 177 ms / 1,000 ms
コード長 844 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,284 KB
最終ジャッジ日時 2024-11-06 22:53:55
合計ジャッジ時間 1,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 41 ms
10,752 KB
testcase_05 AC 67 ms
11,136 KB
testcase_06 AC 52 ms
11,264 KB
testcase_07 AC 177 ms
11,392 KB
testcase_08 AC 51 ms
12,284 KB
testcase_09 AC 45 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    if name in ['digi', 'petit', 'gema', 'piyo', 'rabi']:
        for n, f in phrase.items():
            length = len(f)
            if name == n and f in serif[-length-4:]:
                t = ''.join(filter(lambda c: c in string.ascii_letters or c in '1234567890', 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 or c in '1234567890', serif))) != 0:
            flag = True
    if flag:
        print('CORRECT (maybe)')
    else:
        print('WRONG!')
0