QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#766427#9627. 算术syhhh1WA 1ms3476kbC++17154b2024-11-20 17:17:382024-11-20 17:17:39

Judging History

你现在查看的是最新测评结果

  • [2024-11-20 17:17:39]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3476kb
  • [2024-11-20 17:17:38]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

#define int long long 
signed main()
{
	int n,m;
	cin>>n>>m;
	cout<<n*m*6<<endl;
	
	return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3476kb

input:

7
5 3 0 0 0 0 0 0 0
4 1 1 1 0 0 0 0 0
1 0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0 1
1 0 0 0 0 0 0 0 2
99 88 77 66 55 44 33 22 11
100 90 80 70 60 50 40 30 20

output:

210

result:

wrong answer 1st lines differ - expected: '54', found: '210'