結果

問題 No.2426 Select Plus or Minus
ユーザー simansiman
提出日時 2023-08-21 04:26:14
言語 Ruby
(3.3.0)
結果
MLE  
(最新)
WA  
(最初)
実行時間 -
コード長 160 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 662,856 KB
最終ジャッジ日時 2024-12-14 13:01:53
合計ジャッジ時間 125,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
18,980 KB
testcase_01 MLE -
testcase_02 WA -
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 AC 83 ms
18,980 KB
testcase_07 MLE -
testcase_08 TLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 WA -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 WA -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 WA -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 WA -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
n = N
ans = []

while n > 1
  if n.even?
    n /= 2
    ans << '/'
  else
    n = 3 * n - 1
    ans << '+'
  end
end

puts ans.size
puts ans.join
0