結果

問題 No.1528 Not 1
ユーザー simansiman
提出日時 2021-06-21 14:17:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-22 22:50:01
合計ジャッジ時間 3,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,416 KB
testcase_01 AC 132 ms
14,848 KB
testcase_02 AC 96 ms
13,056 KB
testcase_03 AC 109 ms
13,440 KB
testcase_04 AC 123 ms
14,848 KB
testcase_05 AC 87 ms
12,800 KB
testcase_06 AC 111 ms
14,208 KB
testcase_07 AC 124 ms
14,848 KB
testcase_08 AC 102 ms
13,312 KB
testcase_09 AC 90 ms
12,672 KB
testcase_10 AC 101 ms
13,568 KB
testcase_11 AC 76 ms
12,160 KB
testcase_12 AC 77 ms
12,416 KB
testcase_13 AC 76 ms
12,416 KB
testcase_14 AC 77 ms
12,160 KB
testcase_15 AC 78 ms
12,160 KB
testcase_16 AC 78 ms
12,160 KB
testcase_17 AC 76 ms
12,160 KB
testcase_18 AC 129 ms
15,232 KB
testcase_19 AC 135 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i

if N == 1
  puts 1
  exit
end

if N.odd? && N <= 5
  puts -1
  exit
end

memo = Array.new(N + 1, false)
nums = []

2.upto(2) do |n|
  next if memo[n]

  n.step(N, n) do |v|
    if not memo[v]
      memo[v] = true
      nums << v
    end
  end
end

if nums.size < Rational(N, 2).ceil
  nums.delete_at(nums.index(6))
  nums << 6
  nums << 3
end

puts nums.join(' ')
0