結果
問題 | No.380 悪の台本 |
ユーザー | Hachimori |
提出日時 | 2016-06-17 23:34:45 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 932 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-11-06 22:42:58 |
合計ジャッジ時間 | 879 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,272 KB |
testcase_01 | RE | - |
testcase_02 | AC | 11 ms
6,272 KB |
testcase_03 | AC | 11 ms
6,272 KB |
testcase_04 | AC | 18 ms
6,272 KB |
testcase_05 | AC | 36 ms
6,272 KB |
testcase_06 | AC | 35 ms
6,016 KB |
testcase_07 | RE | - |
testcase_08 | AC | 12 ms
6,528 KB |
testcase_09 | RE | - |
ソースコード
#!/usr/bin/env python #coding:utf8 def read(): return raw_input() def work(s): name, sentence = s.split(' ', 1) cntSymbol = 0 while cntSymbol < len(sentence) and not sentence[len(sentence) - 1 - cntSymbol].isalnum(): cntSymbol += 1 sentence = sentence[:len(sentence) - cntSymbol] if name == "digi": isOk = cntSymbol <= 3 and sentence[-3:].upper() == "NYO" elif name == "petit": isOk = cntSymbol <= 3 and sentence[-3:].upper() == "NYU" elif name == "rabi": isOk = len(sentence) > 0 elif name == "gema": isOk = cntSymbol <= 3 and sentence[-4:].upper() == "GEMA" elif name == "piyo": isOk = cntSymbol <= 3 and sentence[-3:].upper() == "PYO" else: isOk = False print "CORRECT (maybe)" if isOk else "WRONG!" if __name__ == "__main__": try: while 1: work(read()) except EOFError: pass