# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
148434 | 2019-09-01T04:23:15 Z | 요까할 로뭘 은명팀(#3558, mario05092929, foja001, earthk) | HicCup (FXCUP4_hiccup) | C++17 | 5 ms | 432 KB |
#include "hiccup.h" int HicCup(std::string S) { int N = S.size(); int HC=0; for(int i=0;i<N-2;i++){ if(S[i]=='H' && S[i+1]=='H')HC--; if(S[i]=='C' && S[i+1]=='C')HC--; if((S[i]=='H' && S[i+1]== 'C' && S[i+2]== '!'))HC++; } if(HC==0)return -1; return HC; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 432 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 432 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |