結果
問題 | No.380 悪の台本 |
ユーザー | vorg101 |
提出日時 | 2016-06-17 23:31:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 273 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,268 KB |
最終ジャッジ日時 | 2024-11-06 22:42:25 |
合計ジャッジ時間 | 1,457 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,624 KB |
testcase_01 | WA | - |
testcase_02 | AC | 32 ms
10,496 KB |
testcase_03 | AC | 32 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 240 ms
11,520 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import string import sys L = sys.stdin.readlines() phrase = {'digi': 'nyo', 'petit': 'nyu', 'gema': 'gema', 'piyo': 'pyo'} for l in L: flag = False name, serif = l.split(' ')[0], ' '.join(l.split(' ')[1:]).lower() for n, f in phrase.items(): if name == n and f in serif[-6:]: t = serif[-6:] t = list(filter(lambda c: c in string.ascii_letters, t)) if t[-3:] == list(f): flag = True else: continue if name == 'rabi' and len(list(filter(lambda c: c in string.ascii_letters, serif))) != 0: flag = True if flag: print('CORRECT (maybe)') else: print('WRONG!')