結果

問題 No.1528 Not 1
ユーザー Manuel1024Manuel1024
提出日時 2021-06-04 20:23:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 76,480 KB
最終ジャッジ日時 2024-11-19 08:54:28
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 11 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(int(n/2)):
    if i != 0:
        print(' ', end='')
    print(i*2+2, end='')
print('')
0