結果
| 問題 | No.380 悪の台本 |
| コンテスト | |
| ユーザー |
vorg101
|
| 提出日時 | 2016-06-17 23:22:23 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 675 bytes |
| 記録 | |
| コンパイル時間 | 54 ms |
| コンパイル使用メモリ | 14,848 KB |
| 実行使用メモリ | 14,324 KB |
| 最終ジャッジ日時 | 2026-09-19 20:45:33 |
| 合計ジャッジ時間 | 1,466 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 RE * 6 |
ソースコード
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))) != 0:
flag = True
if flag:
print('CORRECT (maybe)')
else:
print('WRONG!')
vorg101