Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
74061 | 安一宸 | 位运算 | C++ | 通过 | 100 | 0 MS | 252 KB | 383 | 2023-05-20 15:09:25 |
#include<bits/stdc++.h> using namespace std; int n,t,w,a[1000010]; int main(){ cin>>n; w=n; while(w!=0){ w/=10; t++; } for(int i=1;i<=t;i++){ if(n!=0){ a[i]=n%10; n/=10; } } for(int i=1;i<=t;i++){ if(a[i]!=0){ a[i]--; break; } } if(a[t]==0){ cout<<0; }else{ for(int i=t;i>=1;i--){ cout<<a[i]; } } return 0; }