結果

問題 No.1528 Not 1
ユーザー ygd.ygd.
提出日時 2021-06-06 12:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 85,860 KB
最終ジャッジ日時 2024-05-02 06:41:34
合計ジャッジ時間 2,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,020 KB
testcase_01 AC 56 ms
79,812 KB
testcase_02 AC 45 ms
67,856 KB
testcase_03 AC 50 ms
70,308 KB
testcase_04 AC 62 ms
84,364 KB
testcase_05 AC 44 ms
65,952 KB
testcase_06 AC 51 ms
74,300 KB
testcase_07 AC 57 ms
79,852 KB
testcase_08 AC 50 ms
74,620 KB
testcase_09 AC 43 ms
65,160 KB
testcase_10 AC 46 ms
71,476 KB
testcase_11 AC 32 ms
52,468 KB
testcase_12 AC 32 ms
52,892 KB
testcase_13 AC 31 ms
52,744 KB
testcase_14 AC 31 ms
52,344 KB
testcase_15 AC 31 ms
52,488 KB
testcase_16 AC 36 ms
52,476 KB
testcase_17 AC 35 ms
52,948 KB
testcase_18 AC 60 ms
80,712 KB
testcase_19 AC 66 ms
85,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    if n == 1 or n == 2:
        print(1)
    elif n == 3 or n == 5:
        print(-1)
    else:
        if n%2 == 0:
            ans = [2*i+2 for i in range(n//2)]
        else:
            ans = []
            now = 2
            while now <= n:
                if now == 6:
                    now += 2
                else:
                    ans.append(now)
                    now += 2
            ans.append(6)
            ans.append(3)
        print(*ans)
    

if __name__ == '__main__':
    main()
0