QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#445402#8780. Training, Round 2cry#WA 0ms3708kbC++14216b2024-06-16 02:05:102024-06-16 02:05:10

Judging History

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

  • [2024-06-16 02:05:10]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3708kb
  • [2024-06-16 02:05:10]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 5001;
const int INF = 1E9+10;

bitset<5001> dp[5001][5001];

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(0);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3708kb

input:

3 0 0
0 1 0 1
1 1 0 1
1 1 1 1

output:


result:

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