結果

問題 No.1528 Not 1
ユーザー c-yan
提出日時 2021-06-06 01:24:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-11-22 01:52:55
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

result = [(i + 1) * 2 for i in range(N // 2)]
if N % 2 == 1:
    result.append(N // 2)
print(*result)
0