4 条题解
-
1
#include<bits/stdc++.h> #include<cstring> #include<queue> #include<set> #include<stack> #include<vector> #include<map> #define ll long long using namespace std; const int N=1e5+10; const int M=2023; const int inf=0x3f3f3f3f; //快速幂 ll power(ll a,ll b,ll p) { ll ans=1,wq=a; while(b) { if(b & 1)ans=ans*wq%p; wq=wq*wq%p; b>>=1;//删掉最后一位 } return ans%p; } char a; int main() { cin>>a; cout<<char(a-32); return 0; }
- 1
信息
- ID
- 814
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 3
- 标签
- 递交数
- 118
- 已通过
- 66
- 上传者