結果

問題 No.130 XOR Minimax
ユーザー hogeover30hogeover30
提出日時 2017-01-08 15:19:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 825 ms / 5,000 ms
コード長 126 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 42,084 KB
最終ジャッジ日時 2024-09-12 22:43:20
合計ジャッジ時間 11,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 432 ms
16,256 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 353 ms
13,056 KB
testcase_05 AC 452 ms
33,792 KB
testcase_06 AC 520 ms
21,504 KB
testcase_07 AC 639 ms
42,084 KB
testcase_08 AC 825 ms
21,504 KB
testcase_09 AC 161 ms
13,952 KB
testcase_10 AC 200 ms
14,336 KB
testcase_11 AC 471 ms
18,944 KB
testcase_12 AC 126 ms
13,440 KB
testcase_13 AC 393 ms
18,048 KB
testcase_14 AC 749 ms
20,096 KB
testcase_15 AC 97 ms
12,672 KB
testcase_16 AC 554 ms
17,792 KB
testcase_17 AC 577 ms
18,304 KB
testcase_18 AC 607 ms
18,560 KB
testcase_19 AC 708 ms
19,584 KB
testcase_20 AC 391 ms
16,000 KB
testcase_21 AC 744 ms
20,224 KB
testcase_22 AC 232 ms
14,336 KB
testcase_23 AC 133 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

f=->d,v{d<0?0:(a=v.select{|x|x[d]>0})[0]&&(b=v-a)[0]?2**d+[f[d-=1,a],f[d,b]].min: f[d-1,v]}
gets
$/=' '
p f[30,$<.map(&:to_i)]
0