【洛谷-P1914】解题报告(字符串)

原始题目

P1414 小书童——密码

题目大意

移位密码还原

解题思路

水题

解题代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int maxn = 1e5 + 5;

#define rep(i, a, n) for (int i = a; i < n; ++i)
#define per(i, a, n) for (int i = n - 1; i >= a; --i)
#define fi first
#define se second
#define pb push_back
#define np next_permutation
#define mp make_pair
#define endl '\n'

string s;
int n;
int main()
{
ios::sync_with_stdio(false);
while (cin >> n >> s) {
rep(i, 0, s.length())
{
cout << char('a' + ((s[i] - 'a') + n) % 26);
}
cout << endl;
}
}

收获与反思