結果

問題 No.1528 Not 1
ユーザー Hentci
提出日時 2022-04-22 16:17:23
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 2,965 ms
コンパイル使用メモリ 243,168 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 21:06:08
合計ジャッジ時間 5,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#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){
        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;
}
0