# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
956579 | 2024-04-02T07:40:58 Z | DeltaStruct | Laugh Analysis (IOI16_laugh) | C++17 | 0 ms | 348 KB |
#include <bits/stdc++.h> #include "laugh.h" using namespace std; int longest_laugh(string s){ int r = 0; for (int i(0),k(1);i < s.size();++i){ k = (s[i]=='a'||s[i]=='h'?k+1:0); r = max(r,k); } return r; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | numbers differ - expected: '1', found: '2' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | numbers differ - expected: '1', found: '2' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | numbers differ - expected: '1', found: '2' |
2 | Halted | 0 ms | 0 KB | - |