0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 21:36:36 +00:00

P1898 缘分计算

R42134215
This commit is contained in:
Baoshuo Ren 2020-11-18 21:05:55 +08:00 committed by Baoshuo Ren
parent ac7b254714
commit 87b094aca2
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

34
problem/P1898/P1898.cpp Normal file
View File

@ -0,0 +1,34 @@
#include <bits/stdc++.h>
using namespace std;
string s;
int st, cnt = 0, a[1000005], ans[1000005];
int main() {
cin >> s >> st;
for (int i = 0; i < s.size(); i++) {
a[i] = s[i] - 'A' + st;
}
for (int i = s.size() - 1; i >= 0; i--) {
while (a[i] > 0) {
ans[++cnt] = a[i] % 10;
a[i] /= 10;
}
}
for (int i = cnt - 1; i >= 3; i--) {
for (int j = 1; j <= i; j++) {
ans[j] = (ans[j] + ans[j + 1]) % 10;
}
}
if (ans[3] == 1 && ans[2] == 0 && ans[1] == 0) {
cout << 100 << endl;
}
else if ((ans[2] + ans[3]) % 10) {
cout << (ans[2] + ans[3]) % 10 << (ans[1] + ans[2]) % 10 << endl;
}
else {
cout << (ans[1] + ans[2]) % 10 << endl;
}
return 0;
}