結果
| 問題 |
No.1528 Not 1
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-04-22 16:19:39 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 704 bytes |
| コンパイル時間 | 3,048 ms |
| コンパイル使用メモリ | 243,076 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-23 21:08:46 |
| 合計ジャッジ時間 | 5,340 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 14 WA * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define ar array
#define sz(x) ((int)x.size())
template <class T,class S> inline bool chmin(T &a,const S &b) {return (a> b? a= b, 1: 0);}
template <class T,class S> inline bool chmax(T &a,const S &b) {return (a< b? a= b, 1: 0);}
int main(){
ios_base::sync_with_stdio(false),cin.tie(0);
int n;
cin >> n;
if(n == 1)
cout << -1 << "\n";
else if(n & 1){
for(int i = 2;i <= n - 1;i += 2)
cout << i << " ";
cout << (n - 1) / 2 << "\n";
}
else{
for(int i = 2;i <= n;i += 2)
cout << i << " ""\n"[i == n];
}
return 0;
}