# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1089323 | 2024-09-16T09:56:20 Z | vjudge1 | Growing Vegetable is Fun 3 (JOI19_ho_t3) | C++17 | 0 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; #define int long long int n; string s; signed main(){ ios::sync_with_stdio(false); cin.tie(0); cin>>n>>s; int cnt=0; for(int i=0 ; i<s.size()-2; i++){ if(s[i]==s[i+1]){ cnt++; char c=s[i+2]; s[i+2]=s[i+1]; s[i+1]=c; } } cout<<cnt-1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 348 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 348 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 348 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |