結果

問題 No.380 悪の台本
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-22 11:47:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 685 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-12-26 05:11:27
合計ジャッジ時間 1,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 34 ms
10,368 KB
testcase_02 AC 28 ms
10,368 KB
testcase_03 AC 31 ms
10,368 KB
testcase_04 AC 37 ms
10,496 KB
testcase_05 AC 66 ms
10,368 KB
testcase_06 AC 61 ms
10,368 KB
testcase_07 AC 147 ms
10,496 KB
testcase_08 AC 54 ms
11,648 KB
testcase_09 AC 44 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,re
scenario = {"nyo":"digi","nyu":"petit","gema":"gema","pyo":"piyo"}
for line in sys.stdin:
    if line[0]==" ":
        print("WRONG!")
        continue
    line = line.split(" ",1)
    if len(line)<2:
        print("WRONG!")
        continue
    
    name = line[0]
    gobi = line[1][:-1].lower()
    gobi = gobi[:-3] + re.sub('[^a-z0-9]', "", gobi[-3:])
    if name=="rabi":
        print("CORRECT (maybe)" if len(re.sub("[^a-z0-9]","",gobi))>=1 else "WRONG!")
    elif name=="gema"==gobi[-4:]:
        print("CORRECT (maybe)")
    elif gobi[-3:] in scenario:
        print("CORRECT (maybe)" if scenario[gobi[-3:]]==name else "WRONG!")
    else:
        print("WRONG!")
0