結果
問題 | No.380 悪の台本 |
ユーザー | Coki628 |
提出日時 | 2020-09-29 17:00:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 140 ms / 1,000 ms |
コード長 | 2,374 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,588 KB |
実行使用メモリ | 78,952 KB |
最終ジャッジ日時 | 2024-07-04 01:04:15 |
合計ジャッジ時間 | 1,562 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
64,764 KB |
testcase_01 | AC | 65 ms
64,648 KB |
testcase_02 | AC | 59 ms
65,740 KB |
testcase_03 | AC | 57 ms
64,324 KB |
testcase_04 | AC | 95 ms
78,356 KB |
testcase_05 | AC | 140 ms
78,952 KB |
testcase_06 | AC | 102 ms
78,040 KB |
testcase_07 | AC | 86 ms
77,508 KB |
testcase_08 | AC | 53 ms
65,080 KB |
testcase_09 | AC | 82 ms
77,508 KB |
ソースコード
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): n = len(s) m = len(keyword) if n < m: return False for i in range(4): if n-m-i < 0: break ss = s[n-m-i:] sl = ss[:m] sr = ss[m:] 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: # splitするとよしなに空白が消されてしまうので、最初の空白だけ取得 idx = line.find(' ') # 空白文字なし if idx == -1: print('WRONG!') continue name = line[:idx] S = line[idx+1:].strip() 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!')