QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#92492#1. I/O TestSnowNorthCompile Error//C++14382b2023-03-30 17:19:252023-03-30 17:19:28

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-03-30 17:19:28]
  • 评测
  • [2023-03-30 17:19:25]
  • 提交

config.txt


input_test


output_test

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

ll C (ll n, ll m) {
	ll ret(1);
	for (ll i = m, j = 1; j <= n; j++, i--)
		ret = ret * i / j;
	return ret;
}

void solve() {
	int n = 1e8;
	for (int i = 1; i <= n; i++)
		cout << i << ' '; 
}

signed main() {
	ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
	solve();
	return 0;
}


Details

Invalid Configuration File: failed to read Nin and Nout