結果

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS

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


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

	cout << -1 << endl;
}
0