結果

問題 No.130 XOR Minimax
ユーザー syarosyaro
提出日時 2016-02-22 21:58:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,157 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 61,188 KB
最終ジャッジ日時 2024-09-12 22:40:06
合計ジャッジ時間 15,222 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
18,432 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 506 ms
60,400 KB
testcase_05 AC 512 ms
61,188 KB
testcase_06 AC 888 ms
42,948 KB
testcase_07 AC 886 ms
43,536 KB
testcase_08 AC 1,157 ms
24,960 KB
testcase_09 AC 213 ms
18,560 KB
testcase_10 AC 279 ms
20,080 KB
testcase_11 AC 781 ms
42,112 KB
testcase_12 AC 148 ms
15,232 KB
testcase_13 AC 635 ms
36,992 KB
testcase_14 AC 1,017 ms
27,136 KB
testcase_15 AC 99 ms
12,672 KB
testcase_16 AC 738 ms
23,552 KB
testcase_17 AC 765 ms
24,320 KB
testcase_18 AC 819 ms
23,936 KB
testcase_19 AC 966 ms
24,704 KB
testcase_20 AC 511 ms
18,048 KB
testcase_21 AC 1,010 ms
27,008 KB
testcase_22 AC 283 ms
15,488 KB
testcase_23 AC 147 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

f=->(d,v){
return 0 if d<0

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