QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
詳細信息
Test #1:
score: 0
Interactor Dangerous Syscalls
input:
output:
e4 Bc4 Qf3 Qxf7#