QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#846462#9999. 好成绩wsyearAC ✓0ms3688kbC++20610b2025-01-07 08:42:112025-01-07 08:42:16

Judging History

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

  • [2025-01-07 08:42:16]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3688kb
  • [2025-01-07 08:42:11]
  • 提交

answer

// Author: Donomonayuas

#include <bits/stdc++.h>

#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>;

template<class T>inline void chkmn(T &x, T y) { if (y < x) x = y; }
template<class T>inline void chkmx(T &x, T y) { if (y > x) x = y; }

using namespace std;

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

詳細信息

Test #1:

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

input:



output:

83

result:

ok single line: '83'