feat(DP): new dp problems formated

This commit is contained in:
2025-11-04 21:14:50 -03:00
parent 669c13147b
commit 3b03c32703
925 changed files with 30660 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include "testlib.h"
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char* argv[]) {
setName("compare two numbers");
registerTestlibCmd(argc, argv);
long long ja = ans.readLong();
long long pa = ouf.readLong();
if (ja != pa)
quitf(_wa, "expected %lld, found %lld", ja, pa);
quitf(_ok, "answer is %lld", ja);
return 0;
}