結果
| 問題 | No.1528 Not 1 |
| コンテスト | |
| ユーザー |
magsta
|
| 提出日時 | 2021-06-04 20:08:19 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 2,000 ms |
| コード長 | 411 bytes |
| コンパイル時間 | 1,406 ms |
| コンパイル使用メモリ | 166,024 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-19 08:06:33 |
| 合計ジャッジ時間 | 2,801 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 19 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int N; cin >> N;
if (N % 2 == 0) {
cout << 2;
for (int i = 1; i < N / 2; i++) {
cout << " " << 2 * (i + 1);
}
cout << endl;
}
else if (N == 1) cout << 1 << endl;
else if (N == 3 || N == 5) cout << -1 << endl;
else {
cout << "2 4";
for (int i = 3; i < N / 2; i++) {
cout << " " << 2 * (i + 1);
}
cout << " 6 3" << endl;
}
}
magsta