結果

問題 No.792 真理関数をつくろう
ユーザー cielciel
提出日時 2018-09-07 11:33:51
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-25 07:41:21
合計ジャッジ時間 3,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 94 ms
12,672 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 99 ms
12,672 KB
testcase_04 WA -
testcase_05 AC 104 ms
12,800 KB
testcase_06 AC 136 ms
13,568 KB
testcase_07 AC 92 ms
12,160 KB
testcase_08 WA -
testcase_09 AC 86 ms
12,032 KB
testcase_10 AC 85 ms
12,288 KB
testcase_11 AC 87 ms
12,288 KB
testcase_12 AC 86 ms
12,288 KB
testcase_13 AC 86 ms
12,032 KB
testcase_14 AC 86 ms
12,288 KB
testcase_15 AC 89 ms
12,288 KB
testcase_16 AC 112 ms
12,928 KB
testcase_17 AC 87 ms
12,032 KB
testcase_18 AC 87 ms
12,032 KB
testcase_19 AC 86 ms
12,160 KB
testcase_20 AC 109 ms
12,800 KB
testcase_21 AC 173 ms
14,208 KB
testcase_22 AC 88 ms
11,904 KB
testcase_23 AC 88 ms
12,032 KB
testcase_24 AC 87 ms
12,160 KB
testcase_25 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i;a=$<.map{|e|e.split.map &:to_i}.select{|e|e[-1]==1}
puts 'A='+(a.size==n**2 ? '⊤' : a.empty? ? '⊥' : a.map{|e|'('+n.times.map{|i|(e[i]==1 ? '' : '¬')+'P_%d'%(i+1)}*'∧'+')'}*'∨')
0