結果

問題 No.1528 Not 1
ユーザー googol_S0googol_S0
提出日時 2021-06-04 21:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 85,768 KB
最終ジャッジ日時 2024-11-19 10:55:58
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,260 KB
testcase_01 AC 63 ms
79,864 KB
testcase_02 AC 51 ms
68,564 KB
testcase_03 AC 52 ms
70,480 KB
testcase_04 AC 66 ms
84,440 KB
testcase_05 AC 49 ms
65,528 KB
testcase_06 AC 55 ms
74,388 KB
testcase_07 AC 63 ms
79,848 KB
testcase_08 AC 55 ms
73,944 KB
testcase_09 AC 49 ms
66,228 KB
testcase_10 AC 53 ms
71,896 KB
testcase_11 AC 37 ms
52,800 KB
testcase_12 AC 37 ms
52,012 KB
testcase_13 AC 37 ms
53,304 KB
testcase_14 AC 39 ms
52,856 KB
testcase_15 AC 37 ms
53,352 KB
testcase_16 AC 36 ms
52,504 KB
testcase_17 AC 37 ms
52,868 KB
testcase_18 AC 66 ms
80,524 KB
testcase_19 AC 70 ms
85,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N==1:
  print(1)
  exit()
if N&1==0:
  print(*list(range(2,N+1,2)))
  exit()
if N==3 or N==5:
  print(-1)
  exit()
X=[]
for i in range(2,N+1,2):
  if i!=6:
    X.append(i)
X.append(6)
X.append(3)
print(*X)
0