이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cstring>
char h[100005], h3[100];
int h2[100005];
int main()
{
for(int i = 0; i < 26; i++) { h3[i] = 'a' + i; }
int n, m, t = 0;
scanf("%d", &n);
while(1) {
if(-1 == scanf("%s", h)) break;
m = strlen(h); //printf("%s\n", h);
for(int i = 0; i < m; i++) {
if(i == m - 1) break;
else {
h2[t] = (h[i] + h[i + 1] - 'a' - 'a' - n + 26) % 26;
t++; i++;
}
}
h2[t] = 0; t++;
}
for(int i = 0; i < t - 1; i++) {
if(h2[i] == 0) printf(" ");
else printf("%c", h3[h2[i]]);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |