Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60303 seanlsy J2 C++ 通过 100 0 MS 244 KB 432 2022-10-15 11:24:03

Tests(10/10):


#include <bits/stdc++.h> using namespace std; inline int read(){ int x=0,f=1;char ch=getchar(); for(;ch<'0'||ch>'9';ch=getchar()) if(ch=='-') f=-1; for(;ch>='0'&&ch<='9';ch=getchar()) x=(x<<1)+(x<<3)+(ch^48); return x*f; } int a,b; int main(){ // freopen("J2.in","r",stdin); // freopen("J2.out","w",stdout); a=read(),b=read(); printf("%d\n",(a/10*(b/10))+(a%10*(b/10))+(a/10*(b%10))+(a%10*(b%10))); return 0; }


测评信息: