結果
問題 | No.1528 Not 1 |
ユーザー | nakaken88 |
提出日時 | 2021-06-04 20:25:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 751 bytes |
コンパイル時間 | 1,591 ms |
コンパイル使用メモリ | 166,100 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-29 23:47:41 |
合計ジャッジ時間 | 3,144 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 7 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | AC | 8 ms
5,376 KB |
ソースコード
#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(...) #endif int 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; }