結果

問題 No.792 真理関数をつくろう
ユーザー MaboyMaboy
提出日時 2021-06-24 17:21:25
言語 Swift
(5.10.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 11,495 ms
コンパイル使用メモリ 187,772 KB
実行使用メモリ 16,796 KB
最終ジャッジ日時 2024-06-25 07:31:26
合計ジャッジ時間 13,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
16,000 KB
testcase_01 AC 13 ms
15,744 KB
testcase_02 AC 11 ms
15,616 KB
testcase_03 AC 16 ms
15,872 KB
testcase_04 AC 12 ms
15,616 KB
testcase_05 AC 16 ms
15,872 KB
testcase_06 AC 32 ms
16,204 KB
testcase_07 AC 12 ms
15,872 KB
testcase_08 AC 12 ms
15,488 KB
testcase_09 AC 11 ms
16,000 KB
testcase_10 AC 11 ms
15,744 KB
testcase_11 AC 11 ms
15,744 KB
testcase_12 AC 12 ms
15,488 KB
testcase_13 AC 11 ms
15,616 KB
testcase_14 AC 11 ms
15,616 KB
testcase_15 AC 12 ms
15,744 KB
testcase_16 AC 21 ms
15,872 KB
testcase_17 AC 11 ms
16,000 KB
testcase_18 AC 11 ms
15,360 KB
testcase_19 AC 11 ms
15,872 KB
testcase_20 AC 25 ms
15,872 KB
testcase_21 AC 38 ms
16,796 KB
testcase_22 AC 11 ms
15,872 KB
testcase_23 AC 11 ms
15,616 KB
testcase_24 AC 12 ms
15,744 KB
testcase_25 AC 12 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation
let n = Int(readLine()!)!
var res = [String]()
var cnt = 0
for _ in 0..<Int(pow(2,Double(n))){
    let f = readLine()!.split(separator: " ").map{Int($0)!}
    if f.last == 1{
        cnt += 1
        var tmp = [String]()
        for j in 0..<n{
            if f[j] == 1{
                tmp += ["P_" + String(j + 1)]
            }else{
                tmp += ["¬P_" + String(j + 1)]
            }
        }
        res += ["(" + tmp.joined(separator: "∧") + ")"]
    }
}
if cnt == 0{
    res = ["⊥"]
}else if cnt == Int(pow(2,Double(n))){
    res = ["⊤"]
}
print("A=" + res.joined(separator: "∨"))
0