12 条题解
-
1
#include<bits/stdc++.h> using namespace std; const int in=1e5+10; const int inf=0x3f3f3f3f; #define LL long long LL n,x,y; double p; char a[342]; int main() { ios::sync_with_stdio(0); cin.tie(0); cin.getline(a,232); for(int i=0;i<strlen(a);i++) { if(a[i]>='A'&&a[i]<='Z') { a[i]-=5; if(a[i]<65) a[i]+=26; } } cout<<a; return 0; }
信息
- ID
- 1110
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- 递交数
- 641
- 已通过
- 256
- 上传者