QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#137320 | #2357. Random Chess Game | ckz# | RE | 0ms | 0kb | C++20 | 393b | 2023-08-10 10:23:28 | 2023-08-10 10:23:32 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define all(a) (a).begin(),(a).end()
using namespace std;
void solve()
{
cout << "e4\n";
cout << "Bc4\n";
cout << "Qf3\n";
cout << "Qxf7#\n";
}
signed main()
{
// ios::sync_with_stdio(false);
// cin.tie(nullptr);cout.tie(nullptr);
int t = 1;
//cin >> t;
while(t--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Interactor Dangerous Syscalls
input:
output:
e4 Bc4 Qf3 Qxf7#