結果

問題 No.792 真理関数をつくろう
ユーザー char134217728char134217728
提出日時 2019-02-22 21:56:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-05-04 02:07:18
合計ジャッジ時間 3,111 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 73 ms
12,032 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 73 ms
12,032 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 131 ms
13,312 KB
testcase_07 AC 81 ms
12,416 KB
testcase_08 AC 73 ms
12,288 KB
testcase_09 AC 73 ms
12,160 KB
testcase_10 AC 72 ms
12,032 KB
testcase_11 AC 73 ms
12,288 KB
testcase_12 AC 73 ms
12,160 KB
testcase_13 AC 89 ms
12,160 KB
testcase_14 AC 78 ms
12,160 KB
testcase_15 AC 78 ms
12,288 KB
testcase_16 AC 98 ms
12,416 KB
testcase_17 AC 78 ms
12,160 KB
testcase_18 AC 77 ms
12,288 KB
testcase_19 AC 78 ms
12,288 KB
testcase_20 AC 94 ms
12,416 KB
testcase_21 AC 148 ms
14,336 KB
testcase_22 AC 81 ms
12,288 KB
testcase_23 AC 84 ms
12,160 KB
testcase_24 AC 73 ms
12,160 KB
testcase_25 AC 74 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a = []
n = gets.to_i
(2**n).times.map{
  b = gets.split.map &:to_i
  if b[-1] == 1
    a << b[0..-2]
  end
}
if a.length==0
  puts "A=⊥"
elsif a.length==(2**n)
  puts "A=⊤"
else
  puts "A=#{a.map{|b| "(" + b.map.with_index{|c, i| ["¬",""][c]+"P_"+(i+1).to_s}*'∧' + ")"}*'∨'}"
end
0