Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
60327 | Ryan123 | J2 | C++ | 通过 | 100 | 0 MS | 256 KB | 307 | 2022-10-15 11:25:42 |
#include<bits/stdc++.h> using namespace std; int a,b,t1,t2,g1,g2; int main() { //freopen("J2.in","r",stdin); //freopen("J2.out","w",stdout); ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); cin>>a>>b; t1=a/10,g1=a%10,t2=b/10,g2=b%10; cout<<t1*t2+t1*g2+t2*g1+g1*g2<<'\n'; return 0; }