QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#276893#7887. How to Identify My NamewsyearAC ✓0ms3704kbC++14713b2023-12-06 12:22:092023-12-06 12:22:10

Judging History

你现在查看的是最新测评结果

  • [2023-12-06 12:22:10]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3704kb
  • [2023-12-06 12:22:09]
  • 提交

answer

#include <bits/stdc++.h>
#ifdef dbg
#define D(...) fprintf(stderr, __VA_ARGS__)
#define DD(...) D(#__VA_ARGS__ " = "), debug_helper::debug(__VA_ARGS__), D("\n")
#include "C:\Users\wsyear\Desktop\OI\templates\debug.hpp"
#else
#define D(...) ((void)0)
#define DD(...) ((void)0)
#endif
#define rep(i, j, k) for (int i = (j); i <= (k); ++i)
#define per(i, j, k) for (int i = (j); i >= (k); --i)
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(),(v).end()
#define fi first
#define se second
using ll = long long;
using pii = std::pair<int, int>;
using pll = std::pair<ll, ll>;

using namespace std;

int main() {
  cin.tie(nullptr) -> ios::sync_with_stdio(false);
  cout << "BAGIDNJF";
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3704kb

input:

<no-input>

output:

BAGIDNJF

result:

ok correct! you answered 8 out of 8 questions correctly

Extra Test:

score: 0
Extra Test Passed