結果

問題 No.1017 Reiwa Sequence
ユーザー simansiman
提出日時 2022-04-12 15:37:50
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 479 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 56,256 KB
最終ジャッジ日時 2024-12-17 22:08:27
合計ジャッジ時間 146,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
19,232 KB
testcase_01 AC 83 ms
24,448 KB
testcase_02 AC 82 ms
18,976 KB
testcase_03 AC 87 ms
24,448 KB
testcase_04 AC 82 ms
19,232 KB
testcase_05 AC 85 ms
24,448 KB
testcase_06 AC 85 ms
19,232 KB
testcase_07 AC 85 ms
24,576 KB
testcase_08 AC 80 ms
19,108 KB
testcase_09 AC 196 ms
24,320 KB
testcase_10 TLE -
testcase_11 AC 125 ms
24,320 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 118 ms
19,112 KB
testcase_15 AC 194 ms
24,320 KB
testcase_16 AC 121 ms
19,236 KB
testcase_17 AC 1,089 ms
18,980 KB
testcase_18 AC 118 ms
18,976 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 AC 80 ms
18,976 KB
testcase_52 TLE -
testcase_53 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i).take(22)
$ans = []

def dfs(i, e, sum, ok, cur)
  if i == e
    if sum == 0 && ok
      $ans = cur.dup
    end
  else
    cur << A[i]
    dfs(i + 1, e, sum + A[i], true, cur)
    cur.pop

    cur << 0
    dfs(i + 1, e, sum, ok, cur)
    cur.pop

    cur << -A[i]
    dfs(i + 1, e, sum - A[i], true, cur)
    cur.pop
  end
end

cur = []
dfs(0, A.size, 0, false, cur)

if $ans.empty?
  puts 'No'
else
  puts 'Yes'
  puts $ans.join(' ')
end
0