結果

問題 No.1528 Not 1
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-04 20:11:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-11-19 08:11:50
合計ジャッジ時間 2,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n in {1, 2}: exit(print(1))
if n in {3, 5}: exit(print(-1))
ans = []
for i in range(1, n // 2 + 1):
    ans.append(2 * i)
if n % 2:
    tmp = ans[-1]
    while tmp % 2 == 0: tmp //= 2
    ans.append(tmp)
print(*ans)
0