結果

問題 No.1528 Not 1
ユーザー 20022002
提出日時 2022-01-18 22:41:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,084 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 173,340 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-05-02 19:34:44
合計ジャッジ時間 3,376 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 9 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 27 ms
7,296 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 6 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 9 ms
5,376 KB
testcase_19 AC 34 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin>>n;
    int op;
    if(n%2==0)
        op=n/2;
    else
        op=n/2+1;
    int h=2;
    if(n==1)
    {
        cout<<1;
        return 0;
    }
    if( n==2)
    {
        cout<<2;
        return 0;
    }

   if(n==3)
   {
    cout<<-1;
    return 0;
   }
    if(n%2==0)
    {
        if(n==2)
            cout<<2<<'\n';
        else
        {
            int u=n/2;
            int i=2;
            for(int j=0;j<u;j++)
               {
                cout<<i<<" ";
                i+=2;

               }
        }
        return 0;
    }
    int p=n/2;
    int ind=-1;
    int ch=n-1;
    for(int i=2;i<=n;i++)
    {
        if(ch%i==0 && i%2==1)
        {
            ind=i;
            break;
        }
    }
    if(ind==-1)
    {
        cout<<-1<<'\n';
        return 0;
    }
  map<int,int>m;
    for(int i=0;i<op-1;i++)
    { m[h]++;
        cout<<h<<" ";
        h+=2;
       
    }

    int op1=(h-2)/2;
   
    cout<<ind;
 
    return 0;
}
0