#include<bits/stdc++.h>
using namespace std;
int main()
{
string s,b;
int r,t;
char c;
long long int num,k;
cin>>t;
c=cin.get();
for(int g=0;g<t;g++)
{
getline(cin,s);
num=0,r=0;
stringstream ss(s);
while(ss>>k)
{
num+=k;
ss>>b;
//cout<<b<<endl;
}
cout<<num<<endl;
}
}
AC (9ms, 316KB) |
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s,b;
int r,t;
char c;
long long int num,k;
cin>>t;
c=cin.get();
for(int g=0;g<t;g++)
{
getline(cin,s);
num=0,r=0;
stringstream ss(s);
while(ss>>k)
{
num+=k;
ss>>b;
//cout<<b<<endl;
}
cout<<num<<endl;
}
}
AC (9ms, 316KB) |
#include <bits/stdc++.h> using namespace std; int main(int argc, char** argv){ cin.tie(0); ios::sync_with_stdio(false); string a; long long int b,c,d; cin>>c; getline(cin,a); while(c--){ b=0; d=0; getline(cin,a); for(int e=0;e<a.size()+1;e++){ if(a[e]>='0'&&a[e]<='9') d=d*10+int(a[e])-48; else{ b=d+b; d=0; } } cout<<b<<endl; } }
AC (3ms, 356KB) |
醬更快XD