結果

問題 No.1528 Not 1
ユーザー simansiman
提出日時 2021-06-21 14:17:08
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-22 22:49:56
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 139 ms
14,976 KB
testcase_02 AC 108 ms
13,056 KB
testcase_03 AC 110 ms
13,440 KB
testcase_04 AC 136 ms
14,848 KB
testcase_05 AC 98 ms
12,672 KB
testcase_06 AC 121 ms
14,208 KB
testcase_07 AC 139 ms
14,976 KB
testcase_08 AC 110 ms
13,312 KB
testcase_09 AC 98 ms
12,928 KB
testcase_10 AC 111 ms
13,440 KB
testcase_11 WA -
testcase_12 AC 85 ms
12,288 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 85 ms
12,288 KB
testcase_15 AC 86 ms
12,288 KB
testcase_16 AC 85 ms
12,416 KB
testcase_17 AC 87 ms
12,160 KB
testcase_18 AC 148 ms
15,104 KB
testcase_19 AC 148 ms
15,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

N = gets.to_i

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