結果

問題 No.380 悪の台本
ユーザー zombietanzombietan
提出日時 2017-05-01 05:01:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 111 ms / 1,000 ms
コード長 1,363 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-24 14:55:49
合計ジャッジ時間 1,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 39 ms
11,136 KB
testcase_05 AC 50 ms
11,904 KB
testcase_06 AC 47 ms
11,904 KB
testcase_07 AC 111 ms
12,416 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 38 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import re
input_line =  sys.stdin.readlines()
input_line = [s.rstrip('\n') for s in input_line]

digi = re.compile(r'(?<=.)([nN][yY][oO])[^a-zA-Z0-9]{0,3}?$')
petit = re.compile(r'(?<=.)([nN][yY][uU])[^a-zA-Z0-9]{0,3}?$')
gema = re.compile(r'(?<=.)([gG][eE][mM][aA])[^a-zA-Z0-9]{0,3}?$')
piyo = re.compile(r'(?<=.)([pP][yY][oO])[^a-zA-Z0-9]{0,3}?$')
rabi = re.compile(r'[a-zA-Z0-9]')


for serif in input_line:
    if serif == "" or serif[0] == " ":
        print('WRONG!')
        continue
    character = serif.split()[0]
    if character == 'digi':
        obj = digi.search(serif)
        if obj:
            print('CORRECT (maybe)')
        else:
            print('WRONG!')
    elif character == 'petit':
        obj = petit.search(serif)
        if obj:
            print('CORRECT (maybe)')
        else:
            print('WRONG!')
    elif character == 'gema':
        obj = gema.search(serif)
        if obj:
            print('CORRECT (maybe)')
        else:
            print('WRONG!')
    elif character == 'piyo':
        obj = piyo.search(serif)
        if obj:
            print('CORRECT (maybe)')
        else:
            print('WRONG!')
    elif character == 'rabi':
        obj = rabi.search(serif[5:])
        if obj:
            print('CORRECT (maybe)')
        else:
            print('WRONG!')
    else:
        print('WRONG!')
0