結果
問題 | No.996 Phnom Penh |
ユーザー | tamato |
提出日時 | 2020-02-21 22:37:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,936 bytes |
コンパイル時間 | 1,591 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 96,928 KB |
最終ジャッジ日時 | 2024-10-08 22:00:40 |
合計ジャッジ時間 | 3,192 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,840 KB |
testcase_01 | AC | 38 ms
52,608 KB |
testcase_02 | AC | 38 ms
52,480 KB |
testcase_03 | AC | 44 ms
59,264 KB |
testcase_04 | AC | 39 ms
52,224 KB |
testcase_05 | AC | 51 ms
63,104 KB |
testcase_06 | AC | 39 ms
52,480 KB |
testcase_07 | AC | 47 ms
59,392 KB |
testcase_08 | AC | 51 ms
62,208 KB |
testcase_09 | AC | 49 ms
62,080 KB |
testcase_10 | AC | 38 ms
52,352 KB |
testcase_11 | AC | 45 ms
59,392 KB |
testcase_12 | AC | 43 ms
59,264 KB |
testcase_13 | AC | 124 ms
95,488 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 38 ms
51,840 KB |
testcase_20 | AC | 37 ms
51,840 KB |
testcase_21 | AC | 37 ms
51,840 KB |
testcase_22 | AC | 37 ms
51,712 KB |
testcase_23 | AC | 37 ms
51,968 KB |
testcase_24 | WA | - |
testcase_25 | AC | 110 ms
96,928 KB |
testcase_26 | AC | 121 ms
96,896 KB |
testcase_27 | AC | 103 ms
95,488 KB |
ソースコード
def main(): import sys input = sys.stdin.readline S = [s for s in input().rstrip('\n')] phnom = 'phnom' penh = 'penh' penhx = 'penhx' ans = 0 for i in range(len(S) - 4): flg = 1 for j in range(5): if S[i+j] != phnom[j]: flg = 0 if flg: ans += 1 for j in range(5): S[i+j] = penhx[j] if 'h' not in S and 'e' not in S: print(ans) exit() S_new = [] ans += 1 for s in S: if s == 'x' or s == 'h': continue if s == 'e': S_new.append('h') else: S_new.append(s) S_new.append('x') flg = 0 has_phnom = 0 #print(ans) #print(S_new) n = len(S_new) i = 0 om_num_max = 0 while i < n: #print(flg, i) if flg == 0: if i+2 < n: ok = 1 for j in range(3): if S_new[i+j] != phnom[j]: ok = 0 else: ok = 0 if ok: has_phnom = 1 flg = 1 i += 3 om_num = 0 else: i += 1 elif flg == 1: if S_new[i] == 'o': flg = 2 i += 1 else: om_num_max = max(om_num_max, om_num) ans += om_num flg = 0 elif flg == 2: if S_new[i] == 'm': om_num += 1 flg = 1 i += 1 else: om_num_max = max(om_num_max, om_num) ans += om_num flg = 0 if not has_phnom: if 'e' in S_new: ans += 2 elif 'h' in S_new: ans += 1 else: ans += 1 ans += om_num_max print(ans) if __name__ == '__main__': main()