結果
| 問題 | No.380 悪の台本 |
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2025-11-29 12:36:11 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 91 ms / 1,000 ms |
| コード長 | 970 bytes |
| コンパイル時間 | 256 ms |
| コンパイル使用メモリ | 82,372 KB |
| 実行使用メモリ | 87,512 KB |
| 最終ジャッジ日時 | 2025-11-29 12:36:12 |
| 合計ジャッジ時間 | 1,866 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
import sys
def check(T):
for t in T:
if t.isalnum():
return True
else:
return False
ansstr = ["WRONG!","CORRECT (maybe)"]
dic = {"digi":"nyo","petit":"nyu","rabi":"","gema":"gema","piyo":"pyo"}
lines = sys.stdin.readlines()
for S in lines:
ss = S.split()
if S[0] == " ":
ans = 0
elif len(ss) <= 1:
ans = 0
elif ss[0] not in dic:
ans = 0
elif ss[0] == "rabi":
if check(S[4:]):
ans = 1
else:
ans = 0
else:
S = S.rstrip()
n = len(S)
a = (S.lower()).rfind(dic[ss[0]])
if a < len(ss[0]):
ans = 0
else:
b = n-a-len(dic[ss[0]])
if b == 0:
ans = 1
elif b <= 3:
if check(S[-b:].rstrip()):
ans = 0
else:
ans = 1
else:
ans = 0
print(ansstr[ans])
ntuda