結果

問題 No.1528 Not 1
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:18:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 86,064 KB
最終ジャッジ日時 2024-07-21 14:53:23
合計ジャッジ時間 2,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,128 KB
testcase_01 AC 64 ms
79,748 KB
testcase_02 AC 50 ms
67,508 KB
testcase_03 AC 52 ms
71,620 KB
testcase_04 AC 68 ms
83,624 KB
testcase_05 AC 48 ms
64,788 KB
testcase_06 AC 54 ms
74,684 KB
testcase_07 AC 65 ms
79,672 KB
testcase_08 AC 55 ms
74,744 KB
testcase_09 AC 49 ms
65,824 KB
testcase_10 AC 56 ms
71,212 KB
testcase_11 AC 37 ms
52,244 KB
testcase_12 AC 39 ms
52,696 KB
testcase_13 AC 37 ms
52,944 KB
testcase_14 AC 38 ms
52,332 KB
testcase_15 AC 39 ms
52,732 KB
testcase_16 AC 37 ms
53,068 KB
testcase_17 AC 37 ms
51,880 KB
testcase_18 AC 66 ms
80,368 KB
testcase_19 AC 72 ms
86,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n == 1:
    print(1)
elif n in (3, 5):
    print(-1)
elif n % 2 == 0:
    ans = list(range(2, n + 1, 2))
    print(*ans)
else:
    ans = [3, 6]
    for i in range(2, n + 1, 2):
        if i != 6:
            ans.append(i)
    print(*ans)
    
0