結果
問題 | No.996 Phnom Penh |
ユーザー | leaf_1415 |
提出日時 | 2020-02-21 22:40:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 921 bytes |
コンパイル時間 | 703 ms |
コンパイル使用メモリ | 59,768 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 22:11:23 |
合計ジャッジ時間 | 1,886 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #define llint long long #define mod 1000000007 using namespace std; string s; llint calc(string &s) { llint ret = 0; for(int i = 0; i < s.size(); i++){ if(i+1 < s.size() && s.substr(i, 3) == "phn"){ i += 3; llint cnt = 0; for(; i < s.size();){ if(i+1 < s.size() && s.substr(i, 2) == "om"){ cnt++; i+=2; } else break; } ret = max(ret, cnt); i--; } } return ret*2+1; } bool ope(string &s) { string t = s; s = ""; bool flag = false; for(int i = 0; i < t.size(); i++){ if(t[i] == 'h'){ flag = true; } else if(t[i] == 'e'){ s += 'h'; flag = true; } else s += t[i]; } return flag; } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> s; llint ans = calc(s); if(ope(s)) ans = max(ans, calc(s)+1); if(ope(s)) ans = max(ans, calc(s)+2); cout << ans << endl; return 0; }