| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1367455 | kmath628 | Split (info1cup19_split) | C++20 | 0 ms | 344 KiB |
#include <bits/stdc++.h>
char s[20];
int main(){
scanf(" %s",s);
int n=strlen(s),i;
for(i=n-1;i>=n/2;i--) s[i+1]=s[i];
s[n/2]=' ';
printf("%s\n",s);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
