結果
問題 | No.380 悪の台本 |
ユーザー | yn |
提出日時 | 2016-06-18 00:47:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,938 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 77,952 KB |
最終ジャッジ日時 | 2024-11-06 22:52:27 |
合計ジャッジ時間 | 2,055 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,352 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 280 ms
76,160 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#http://yukicoder.me/submissions/98600 import sys alp = [[chr(i) for i in range(65,65+26)], [chr(i) for i in range(97,97+26)]] digi = ["nyo","Nyo","nYo","nyO","NYo","nYO","NyO","NYO"] petit = ["nyu","Nyu","nYu","nyU","NYu","nYU","NyU","NYU"] gema = ["gema","Gema","gEma","geMa","gemA","GEma","GeMa","GemA","gEMa","gEmA","geMA","GEMa","GEmA","GeMA","gEMA","GEMA"] piyo = ["pyo","Pyo","pYo","pyO","PYo","pYO","PyO","PYO"] while True: try: s = input() except: break ss = s.split() fdigi = True fpetit = True fgema = True fpiyo = True frabi = True if len(s) < 6: print("WRONG!") continue if ss[0] == "digi": for i in range(4): if len(s) - i - 7 >= 0 and s[i-7:i-4] in digi: print("CORRECT (maybe)") fdigi = False break if fdigi: print("WRONG!") elif ss[0] == "petit": for i in range(4): if len(s) - i-7 >= 0 and s[i-7:i-4] in petit: print("CORRECT (maybe)") fpetit = False break if fpetit: print("WRONG!") elif ss[0] == "gema": for i in range(4): if len(s) - i-7 >= 0 and s[i-7:i-4] in gema: print("CORRECT (maybe)") fgema = False break if fgema: print("WRONG!") elif ss[0] == "piyo": for i in range(4): if len(s) - i-7 >= 0 and s[i-7:i-4] in piyo: print("CORRECT (maybe)") fpiyo = False break if fpiyo: print("WRONG!") else: cnt = 0 for S in s: if S.isalpha(): cnt += 1 if cnt > 4: print("CORRECT (maybe)") frabi = False break if frabi: print("WRONG!")