记录编号 | 541978 | 评测结果 | AAAAAAAAAAAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2017]小凯的疑惑 | 最终得分 | 100 | ||
用户昵称 | 夜莺 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.009 s | ||
提交时间 | 2019-09-18 22:05:57 | 内存使用 | 13.66 MiB | ||
#include<cstdio> #include<iostream> using namespace std; int main(){ long long n,m; freopen("2017math.in","r",stdin); freopen("2017math.out","w",stdout); cin>>n>>m; cout<<n*m-n-m; }