結果
問題 | No.1528 Not 1 |
ユーザー |
|
提出日時 | 2021-06-04 20:25:08 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 751 bytes |
コンパイル時間 | 1,800 ms |
コンパイル使用メモリ | 166,280 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 08:56:31 |
合計ジャッジ時間 | 3,289 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h>using namespace std;using ll = long long;#ifdef LOCAL#include "debug.hpp"#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)#else#define debug(...)#endifint main() {ios::sync_with_stdio(false);cin.tie(0);ll N; cin >> N;if (N == 1) {cout << 1 << '\n';return 0;} else if (N == 2) {cout << 2 << '\n';return 0;} else if (N == 3 || N == 5) {cout << -1 << '\n';return 0;} else if (N % 2 == 0) {for (ll i = 1; i <= N / 2; i++) {cout << (i * 2) << ' ';}} else {cout << 3 << ' ';cout << 6 << ' ';for (ll i = 1; i <= N / 2; i++) {if (i == 3) continue;cout << (i * 2) << ' ';}}return 0;}