結果

問題 No.380 悪の台本
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-21 23:38:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 10,516 KB
実行使用メモリ 9,188 KB
最終ジャッジ日時 2023-08-27 00:48:12
合計ジャッジ時間 2,113 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 24 ms
8,980 KB
testcase_03 AC 25 ms
9,132 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 188 ms
9,136 KB
testcase_08 AC 26 ms
9,164 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,re
scenario = {"nyo":"digi","nyu":"petit","gema":"gema","pyo":"piyo"}
for line in sys.stdin:
    line = re.split("\W+",str(line).lower())
    print("CORRECT (maybe)" if scenario.get(line[-2],"rabi") == line[0] else "WRONG!")
0