結果
問題 | No.380 悪の台本 |
ユーザー | Coki628 |
提出日時 | 2020-09-23 17:48:49 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,137 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,532 KB |
実行使用メモリ | 79,376 KB |
最終ジャッジ日時 | 2024-06-27 22:51:48 |
合計ジャッジ時間 | 1,607 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
64,384 KB |
testcase_01 | RE | - |
testcase_02 | AC | 58 ms
64,128 KB |
testcase_03 | AC | 58 ms
64,384 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | AC | 57 ms
64,640 KB |
testcase_09 | WA | - |
ソースコード
import sys from string import digits, ascii_letters def input(): return sys.stdin.readline().strip() def list2d(a, b, c): return [[c for j in range(b)] for i in range(a)] def list3d(a, b, c, d): return [[[d for k in range(c)] for j in range(b)] for i in range(a)] def list4d(a, b, c, d, e): return [[[[e for l in range(d)] for k in range(c)] for j in range(b)] for i in range(a)] def ceil(x, y=1): return int(-(-x // y)) def INT(): return int(input()) def MAP(): return map(int, input().split()) def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)] def Yes(): print('Yes') def No(): print('No') def YES(): print('YES') def NO(): print('NO') sys.setrecursionlimit(10**9) INF = 10**18 MOD = 10**9 + 7 EPS = 10**-10 def check1(S, keyword): s = S[-1] n = len(s) if n <= 2: return False for i in range(3): if n-3-i < 0: break ss = s[n-3-i:] sl = ss[:3] sr = ss[3:] if sl.lower() == keyword.lower(): for sss in sr: if sss in digits or sss in ascii_letters: break else: return True return False def check2(S): for s in S: for ss in s: if ss in digits or ss in ascii_letters: return True return False for line in sys.stdin: name, *S = line.split() if name == 'digi': if check1(S, 'nyo'): print('CORRECT (maybe)') else: print('WRONG!') elif name == 'petit': if check1(S, 'nyu'): print('CORRECT (maybe)') else: print('WRONG!') elif name == 'gema': if check1(S, 'gema'): print('CORRECT (maybe)') else: print('WRONG!') elif name == 'piyo': if check1(S, 'pyo'): print('CORRECT (maybe)') else: print('WRONG!') elif name == 'rabi': if check2(S): print('CORRECT (maybe)') else: print('WRONG!') else: print('WRONG!')