0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:25:25 +00:00
OI-codes/Luogu/problem/P1079/P1079.cpp

21 lines
373 B
C++
Raw Normal View History

2020-11-01 07:54:30 +00:00
#include <bits/stdc++.h>
using namespace std;
int main() {
string k, c;
int t = 0;
cin >> k >> c;
for (int i = 0; i < c.size(); i++) {
t = (k[i % k.size()] & 31) - 1;
if((c[i] & 31) - t > 0) {
c[i] = c[i] - t;
}
else {
c[i] = c[i] - t + 26;
}
}
cout << c << endl;
return 0;
}