답안 #9409

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
9409 2014-09-28T06:12:14 Z httrace Veni, vidi, vici (kriii2_V) C++
0 / 4
0 ms 1676 KB
#include <stdio.h>
#include <iostream>
#include <string>
using namespace std;
int main()
{
	int n;
	string a;
	scanf("%d", &n);
	getc(stdin);
	getline(cin, a);
	for(int i = 0 ; i < a.length()-1 ; i+=2){
		if(a[i] == 32){i++;printf(" ");}
		else if(a[i+1] == 32){printf(" ");continue;}
		printf("%c",(a[i] - 97 + a[i+1] -97 - n)%26 + 97);
	}
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 1676 KB SIGSEGV Segmentation fault
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Halted 0 ms 0 KB -