結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
17,280 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 91 ms
12,288 KB
testcase_03 AC 89 ms
12,288 KB
testcase_04 AC 344 ms
18,816 KB
testcase_05 AC 461 ms
42,112 KB
testcase_06 AC 523 ms
25,752 KB
testcase_07 AC 653 ms
49,996 KB
testcase_08 AC 815 ms
26,240 KB
testcase_09 AC 161 ms
15,616 KB
testcase_10 AC 204 ms
17,152 KB
testcase_11 AC 476 ms
25,984 KB
testcase_12 AC 127 ms
13,568 KB
testcase_13 AC 403 ms
25,344 KB
testcase_14 AC 741 ms
24,192 KB
testcase_15 AC 97 ms
12,672 KB
testcase_16 AC 548 ms
22,144 KB
testcase_17 AC 562 ms
22,272 KB
testcase_18 AC 601 ms
23,040 KB
testcase_19 AC 708 ms
22,016 KB
testcase_20 AC 386 ms
16,896 KB
testcase_21 AC 733 ms
24,064 KB
testcase_22 AC 226 ms
15,616 KB
testcase_23 AC 131 ms
13,696 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,gets.split.map(&:to_i)]
0