結果

問題 No.1528 Not 1
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:17:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 85,884 KB
最終ジャッジ日時 2024-07-21 14:52:47
合計ジャッジ時間 3,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,072 KB
testcase_01 AC 63 ms
79,820 KB
testcase_02 AC 50 ms
69,060 KB
testcase_03 AC 51 ms
70,252 KB
testcase_04 AC 65 ms
84,016 KB
testcase_05 AC 49 ms
65,528 KB
testcase_06 AC 54 ms
74,924 KB
testcase_07 AC 63 ms
79,976 KB
testcase_08 AC 55 ms
74,028 KB
testcase_09 AC 49 ms
65,628 KB
testcase_10 AC 53 ms
71,348 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,684 KB
testcase_13 AC 38 ms
53,696 KB
testcase_14 AC 37 ms
53,132 KB
testcase_15 AC 37 ms
52,284 KB
testcase_16 AC 38 ms
52,656 KB
testcase_17 AC 37 ms
52,688 KB
testcase_18 AC 65 ms
80,444 KB
testcase_19 AC 70 ms
85,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if 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