QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#259201 | #6418. Ah, It's Yesterday Once More | hos_lyric | WA | 0ms | 3432kb | C++14 | 1.9kb | 2023-11-20 18:35:56 | 2023-11-20 18:35:57 |
Judging History
answer
#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using Int = long long;
template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")
constexpr int N = 20;
constexpr char ANS[N][N + 1] = {
"00010000010000010000",
"01001101001101001101",
"00100100100100100100",
"10010010010010010010",
"01001001001001001000",
"01100100100100100110",
"00010010010010010010",
"01001001001001001001",
"00100100100100100100",
"10010010010010010010",
"01001001001001001000",
"01100100100100100110",
"00010010010010010010",
"01001001001001001001",
"00100100100100100100",
"10010010010010010010",
"01001001001001001000",
"01100100100100100110",
"00010110010110010110",
"01000001000001000001",
};
int main() {
printf("%d %d\n", N, N);
for (int x = 0; x < N; ++x) {
puts(ANS[x]);
}
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3432kb
input:
output:
20 20 00010000010000010000 01001101001101001101 00100100100100100100 10010010010010010010 01001001001001001000 01100100100100100110 00010010010010010010 01001001001001001001 00100100100100100100 10010010010010010010 01001001001001001000 01100100100100100110 00010010010010010010 01001001001001001001 ...
result:
wrong answer Cycle Detected.