結果
問題 | No.380 悪の台本 |
ユーザー | niyarin |
提出日時 | 2016-07-05 18:31:55 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 828 bytes |
コンパイル時間 | 56 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-11-06 23:04:55 |
合計ジャッジ時間 | 1,020 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,400 KB |
testcase_01 | WA | - |
testcase_02 | AC | 13 ms
6,272 KB |
testcase_03 | AC | 13 ms
6,272 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 193 ms
6,272 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import re nyrn = {a:re.compile(".*"+b+"[!-/:-@[-`{-~ ]{0,3}\Z",re.IGNORECASE) for a,b in [("digi","nyo"),("petit","nyu"),("gema","gema"),("piyo","pyo")]} while 1: try: a = raw_input().split(" ") flag = True if (len(a)) < 2: flag = False elif not(a[0] in ["digi","petit","gema","piyo","tabi"]): flag = False else: x = a[0] y = a[1:] s = "".join(y) if x == "rabi": if not (re.match("[!-/:-@[-`{-~]",s)): flag = False else: rm = re.match(nyrn[x],s) if not(rm and rm.group() == s): flag = False print "CORRECT (maybe)" if flag else "WRONG!" except: break