結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー ecottea
提出日時 2024-02-03 01:26:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 190,484 KB
最終ジャッジ日時 2025-02-19 01:08:18
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS

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


int main() {
	int n;
	cin >> n;

	// 順列じゃない
	for (int i = 0; i < 3 * n; i ++) cout << 1 << " \n"[i == 3 * n - 1];
}
0