Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60363 AK2022071375 J2 C++ 解答错误 30 0 MS 240 KB 188 2022-10-15 11:28:21

Tests(3/10):


#include<iostream> #include<cstdio> using namespace std; int main(){ long long a,b; cin>>a>>b; long long c=a*b,ans=0; while(c){ ans+=c%10; c/=10; } cout<<ans<<endl; }


测评信息: