結果

問題 No.380 悪の台本
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-21 23:38:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 235 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-26 05:06:16
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 34 ms
10,368 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 234 ms
10,496 KB
testcase_08 AC 34 ms
10,880 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:4: SyntaxWarning: invalid escape sequence '\W'
  line = re.split("\W+",str(line).lower())

ソースコード

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