Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60431 007yingziyu J2 C++ 解答错误 30 0 MS 264 KB 208 2022-10-15 11:34:22

Tests(3/10):


#include<bits/stdc++.h> using namespace std; int a,b; long long ans; int main() { ios::sync_with_stdio(false); cin>>a>>b; int c=a*b; while(c) { ans+=c%10; c/=10; } cout<<ans<<endl; }


测评信息: