結果

問題 No.1528 Not 1
ユーザー O2MTO2MT
提出日時 2021-06-04 22:06:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,272 KB
最終ジャッジ日時 2024-04-30 02:53:37
合計ジャッジ時間 2,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 80 ms
84,480 KB
testcase_02 AC 66 ms
71,168 KB
testcase_03 AC 66 ms
73,856 KB
testcase_04 AC 80 ms
84,736 KB
testcase_05 AC 58 ms
66,432 KB
testcase_06 AC 76 ms
81,408 KB
testcase_07 AC 83 ms
84,992 KB
testcase_08 AC 68 ms
74,752 KB
testcase_09 AC 60 ms
67,968 KB
testcase_10 AC 68 ms
75,648 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 86 ms
86,272 KB
testcase_19 AC 84 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from  math import ceil
N = int(input())
if N == 1:
  print(1)
  exit()
M = ceil(N/2)
evenList = []
num = -1
flg = True
for i in range(2,N+1,2):
  if i%3 == 0:
    if flg:
      num = i
      flg = False
  else:
    evenList.append(i)
ansList = evenList
la = len(ansList)
if num != -1:
  ansList.append(num)
  la += 1
  for i in range(3,N+1,3):
    if la == M:
      break
    if i == num:
      continue
    la += 1
    ansList.append(i)
if la == M:
  print(*ansList)
else:
  print(-1)
0