結果

問題 No.1528 Not 1
ユーザー O2MTO2MT
提出日時 2021-06-04 21:38:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,044 KB
最終ジャッジ日時 2024-11-19 13:11:36
合計ジャッジ時間 3,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,344 KB
testcase_01 AC 77 ms
84,596 KB
testcase_02 AC 62 ms
71,104 KB
testcase_03 AC 60 ms
74,396 KB
testcase_04 AC 73 ms
84,668 KB
testcase_05 AC 52 ms
66,588 KB
testcase_06 AC 67 ms
81,320 KB
testcase_07 AC 74 ms
85,132 KB
testcase_08 AC 61 ms
74,972 KB
testcase_09 AC 53 ms
68,400 KB
testcase_10 AC 61 ms
75,744 KB
testcase_11 WA -
testcase_12 AC 40 ms
52,716 KB
testcase_13 AC 40 ms
52,280 KB
testcase_14 AC 38 ms
52,192 KB
testcase_15 AC 38 ms
52,316 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 39 ms
52,596 KB
testcase_18 AC 75 ms
85,808 KB
testcase_19 AC 77 ms
86,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from  math import ceil
N = int(input())
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