0
已解决
车昊轩
初级守护
初级守护
https://www.luogu.com.cn/problem/U486258
车昊轩在2024-10-04 23:06:15追加了内容
没加测试点代码发过来
车昊轩在2024-10-05 07:58:21追加了内容
再来一道
https://www.luogu.com.cn/problem/U486329
车昊轩在2024-10-05 07:59:03追加了内容
测试点没加
车昊轩在2024-10-05 09:21:15追加了内容
https://www.luogu.com.cn/problem/U486358
没加测试点
这一道和前面两道一起做完第一个
0
0
张洪睿
资深光能
资深光能
#include<iostream>
using namespace std;
int a, b;
int main(){
cin>>a>>b;
cout<<a - b;
return 0;
}
0
0
倪雨泽
高级光能
高级光能
#include<iostream>
#define ll long long
using namespace std;
string s;
int main(){
cin>>s;
ll cnt=0;
for(ll i=0;i<s.size();i++){
if(s[i]=='1') cnt++;
}
cout<<cnt;
return 0;
}
0
倪雨泽
高级光能
高级光能
#include<iostream>
using namespace std;
string s;
int f;
int main(){
cin>>s;
for(int i=0;i<s.size();i++){
if(s[i]=='0') f=0;
if(s[i]=='1') f=1;
if(s[i]=='2') f=2;
if(s[i]=='3') f=3;
}
cout<<f;
return 0;
}
0
倪雨泽
高级光能
高级光能
#include<iostream>
using namespace std;
int a,b;
int main(){
cin>>a>>b;
cout<<a-b;
return 0;
}
0
包思远
新手启示者
新手启示者
#include<bits/stdc++.h>
using namespace std;
int a,b;
int main(){
cin>>a>>b;
cout<<a-b;
return 0;
}
0