結果

問題 No.1528 Not 1
ユーザー ethan_hethan_h
提出日時 2021-06-05 03:41:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
OLE  
実行時間 -
コード長 452 bytes
コンパイル時間 1,446 ms
コンパイル使用メモリ 165,676 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-11-20 19:19:27
合計ジャッジ時間 37,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,020 KB
testcase_01 OLE -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 AC 10 ms
13,636 KB
testcase_05 AC 3 ms
10,020 KB
testcase_06 OLE -
testcase_07 OLE -
testcase_08 AC 5 ms
13,632 KB
testcase_09 OLE -
testcase_10 OLE -
testcase_11 AC 1 ms
10,496 KB
testcase_12 AC 2 ms
8,448 KB
testcase_13 AC 1 ms
10,496 KB
testcase_14 AC 2 ms
8,448 KB
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 AC 11 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n;cin>>n;
    if(n&1){
        if(n==1)cout<<1;
        else{if(n<=5)cout<<-1;
        else
            {
                cout<<3<<" "<<6<<" "<<2<<" "<<4<<" " ;
                for(int i=8;i<n;i+=2){
                    cout<<i<<" ";
                }
            }
        }

    }
    else{
        for(int i=2;i<=n;i+2){
            cout<<i<<" ";
        }
    }

    return 0;
}
0