Submission #9433

# Submission time Handle Problem Language Result Execution time Memory
9433 2014-09-28T06:24:17 Z YesUjam Veni, vidi, vici (kriii2_V) C++
0 / 4
0 ms 1092 KB
#include<cstdio>
#include<cstring>

char str[11111];

int main()
{
	int n;
	scanf("%d", &n);
	getchar();
	gets(str);

	char *pch;
	pch = strtok(str, " ");
	while(pch!=NULL){
		char tmp[111];
		int len;
		sprintf(tmp,"%s", pch);
		len = strlen(tmp);
		for(int i=0;i<len;i+=2){
			if(tmp[i+1] !='\0'){
				int ans = (tmp[i]-'a'+tmp[i+1]-'a' - n);
				if(ans < 0){
					ans+=26;
				}
				printf("%c", ans%26 + 'a');
			}
		}
		printf(" ");
		pch = strtok(NULL, " ");
	}

	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 1092 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Halted 0 ms 0 KB -