結果

問題 No.1528 Not 1
ユーザー shakayamishakayami
提出日時 2021-06-04 20:05:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 83,212 KB
最終ジャッジ日時 2024-11-19 07:58:41
合計ジャッジ時間 3,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,484 KB
testcase_01 AC 66 ms
80,140 KB
testcase_02 AC 52 ms
67,632 KB
testcase_03 AC 54 ms
70,728 KB
testcase_04 AC 95 ms
81,940 KB
testcase_05 AC 57 ms
65,164 KB
testcase_06 AC 57 ms
74,968 KB
testcase_07 AC 67 ms
79,744 KB
testcase_08 AC 70 ms
74,644 KB
testcase_09 AC 51 ms
66,512 KB
testcase_10 AC 56 ms
71,932 KB
testcase_11 AC 40 ms
52,444 KB
testcase_12 AC 39 ms
52,880 KB
testcase_13 AC 40 ms
53,008 KB
testcase_14 AC 39 ms
52,976 KB
testcase_15 AC 38 ms
52,104 KB
testcase_16 AC 38 ms
52,788 KB
testcase_17 AC 39 ms
53,652 KB
testcase_18 AC 69 ms
80,276 KB
testcase_19 AC 103 ms
83,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N==1:
    print(1)
elif N==3:
    print(-1)
elif N==5:
    print(-1)
elif N%2==0:
    print(*[2*i for i in range(1,1+N//2)])
else:
    X=[2*i for i in range(1,1+N//2)]
    X.sort(key=lambda x:x%3)
    print(*([3]+X))
0