結果

問題 No.130 XOR Minimax
ユーザー syarosyaro
提出日時 2016-02-22 22:17:55
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-09-22 13:06:45
合計ジャッジ時間 9,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 86 ms
12,288 KB
testcase_02 WA -
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 339 ms
18,944 KB
testcase_05 AC 149 ms
21,504 KB
testcase_06 AC 527 ms
25,768 KB
testcase_07 WA -
testcase_08 AC 672 ms
26,368 KB
testcase_09 AC 156 ms
15,616 KB
testcase_10 AC 198 ms
17,152 KB
testcase_11 WA -
testcase_12 AC 120 ms
13,824 KB
testcase_13 AC 396 ms
25,344 KB
testcase_14 AC 566 ms
24,192 KB
testcase_15 WA -
testcase_16 AC 418 ms
22,144 KB
testcase_17 WA -
testcase_18 AC 452 ms
23,168 KB
testcase_19 AC 532 ms
22,272 KB
testcase_20 AC 301 ms
17,024 KB
testcase_21 AC 561 ms
24,192 KB
testcase_22 AC 181 ms
15,488 KB
testcase_23 AC 115 ms
13,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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