이 제출은 이전 버전의 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; }//printf("%c\n", h3[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 if(h[i] == ' ') { h2[t] = 0; t++; }
//else if(h[i + 1] == ' ') continue;
else {
//h2[t] = (h[i] + h[i + 1] - 'a' - 'a' - n + 26) % 26;
h2[t] = (h[i] + h[i + 1] - 'a' - 'a' - n + 78) % 26;
//printf("%d\n", h2[t]);
t++; i++;
}
}
h2[t] = 0; t++;
//for(int i = 0; i < t; i++) printf("(%d)", h2[i]);
}
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... |