結果
問題 | No.1528 Not 1 |
ユーザー | spipipike |
提出日時 | 2021-06-04 20:14:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 515 bytes |
コンパイル時間 | 1,694 ms |
コンパイル使用メモリ | 169,256 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 08:20:07 |
合計ジャッジ時間 | 3,243 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (n); i++) using namespace std; using ll = long long; using P = pair<int,int>; int main(){ int n; cin>>n; vector<int> ans; if(n<=2) ans.push_back(1); else if(n%2==1){ if(n>=7){ for(int i=2; i<=n; i+=2) if(i!=6) ans.push_back(i); ans.push_back(6); ans.push_back(3); } } else{ for(int i=2; i<=n; i+=2) ans.push_back(i); } if(ans.size()==0) cout<<(-1)<<endl; else{ for(int e : ans) cout<<e<<" "; cout<<endl; } return 0; }