feat(DP): new problem formated

This commit is contained in:
2025-11-06 12:15:56 -03:00
parent b8431dffe4
commit c916bf6ae5
228 changed files with 6857 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;
}