結果

問題 No.792 真理関数をつくろう
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2019-02-24 20:05:20
言語 Go
(1.23.4)
結果
TLE  
実行時間 -
コード長 748 bytes
コンパイル時間 11,439 ms
コンパイル使用メモリ 237,584 KB
実行使用メモリ 17,188 KB
最終ジャッジ日時 2024-12-23 14:57:31
合計ジャッジ時間 15,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 27 ms
8,172 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 72 ms
8,308 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 74 ms
8,348 KB
testcase_06 AC 970 ms
10,388 KB
testcase_07 AC 9 ms
8,176 KB
testcase_08 AC 1 ms
6,824 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,824 KB
testcase_14 AC 1 ms
6,824 KB
testcase_15 AC 5 ms
6,820 KB
testcase_16 AC 245 ms
8,304 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 111 ms
6,816 KB
testcase_21 TLE -
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 1 ms
17,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

func main() {
	var n int
	fmt.Scan(&n)

	flg := false
	ans := ""
	for range make([]struct{}, pow(2, n)) {
		q := make([]int8, n)
		for j := range q {
			fmt.Scan(&q[j])
		}
		var r int8
		fmt.Scan(&r)
		if r == 1 {
			if ans != "" {
				ans += "∨"
			}
			ans += "("
			for j, v := range q {
				if j != 0 {
					ans += "∧"
				}
				if v == 0 {
					ans += "¬"
				}
				ans += "P_"
				k := j + 1
				if k >= 10 {
					ans += "1"
				}
				ans += string('0' + k%10)
			}
			ans += ")"
		} else {
			flg = true
		}
	}
	if ans == "" {
		ans = "⊥"
	} else if !flg {
		ans = "⊤"
	}
	fmt.Printf("A=%s\n", ans)
}

func pow(a, b int) int {
	res := 1
	for range make([]struct{}, b) {
		res *= a
	}
	return res
}
0