結果

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

ソースコード

diff #

N = int(input())

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