結果
| 問題 |
No.1528 Not 1
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-08-07 23:24:39 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 150 bytes |
| コンパイル時間 | 224 ms |
| コンパイル使用メモリ | 82,196 KB |
| 実行使用メモリ | 63,828 KB |
| 最終ジャッジ日時 | 2024-09-18 19:38:45 |
| 合計ジャッジ時間 | 4,105 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 3 WA * 16 |
ソースコード
N=int(input())
if N==1:
print(1)
elif N==2 or N==3:
print(-1)
else:
L=[str(2*(i%2+1)) for i in range(1,int(N/2)+1)]
print(" ".join(L))