結果
問題 | No.380 悪の台本 |
ユーザー | kmjp |
提出日時 | 2016-06-17 23:49:09 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 742 bytes |
コンパイル時間 | 64 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-11-06 22:45:32 |
合計ジャッジ時間 | 1,072 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,144 KB |
testcase_01 | WA | - |
testcase_02 | AC | 11 ms
6,016 KB |
testcase_03 | AC | 12 ms
6,016 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 243 ms
6,272 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import sys def iskigo(c): if c.isdigit(): return 0 if c.isalpha(): return 0 return 1 def hoge(tail,S): id = S.rfind(tail) if id < 0: return 0 id += len(tail) if len(S) - id > 4: return 0 for i in range(id,len(S)): if iskigo(S[i])==0: return 0 return 1 while 1: try: S=raw_input() except: break yes = 0 if S.startswith("digi "): yes = hoge("nyo",S[5:].lower()) elif S.startswith("petit "): yes = hoge("nyu",S[6:].lower()) elif S.startswith("rabi "): for i in S[5:].lower(): if iskigo(i)==0: yes=0 elif S.startswith("gema "): yes = hoge("gema",S[5:].lower()) elif S.startswith("piyo "): yes = hoge("pyo",S[5:].lower()) if yes == 1: print "CORRECT (maybe)" else: print "WRONG!"