結果

問題 No.130 XOR Minimax
ユーザー syarosyaro
提出日時 2016-02-22 22:07:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 824 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 50,024 KB
最終ジャッジ日時 2024-09-12 22:40:46
合計ジャッジ時間 11,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 432 ms
17,280 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 344 ms
18,688 KB
testcase_05 AC 460 ms
42,112 KB
testcase_06 AC 534 ms
25,464 KB
testcase_07 AC 663 ms
50,024 KB
testcase_08 AC 824 ms
26,368 KB
testcase_09 AC 162 ms
15,488 KB
testcase_10 AC 205 ms
17,152 KB
testcase_11 AC 477 ms
25,984 KB
testcase_12 AC 125 ms
13,568 KB
testcase_13 AC 407 ms
25,600 KB
testcase_14 AC 743 ms
24,064 KB
testcase_15 AC 98 ms
12,672 KB
testcase_16 AC 548 ms
22,016 KB
testcase_17 AC 567 ms
22,272 KB
testcase_18 AC 594 ms
23,168 KB
testcase_19 AC 697 ms
21,888 KB
testcase_20 AC 390 ms
17,024 KB
testcase_21 AC 738 ms
23,936 KB
testcase_22 AC 229 ms
15,488 KB
testcase_23 AC 131 ms
13,440 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-1,b]].min: f[d-1,v]}
gets
p f[30,gets.split.map(&:to_i)]
0