結果

問題 No.2090 否定論理積と充足可能性
ユーザー miscalcmiscalc
提出日時 2022-09-30 21:51:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-02 05:29:10
合計ジャッジ時間 1,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 27 ms
10,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

a = list(map(int, input().split()))
n = len(a)
def nand(x, y):
  return 1 if x == 0 and y == 0 else 0
for b in range(1 << n):
  c = [1 if (b & (1 << i)) else 0 for i in range(n)]
  ok = True
  for i in range(n):
    for j in range(i + 1, n):
      if c[i] != c[j] and a[i] == a[j]:
        ok = False
        break
  if not ok:
    continue
  if nand(nand(nand(c[0], c[1]), c[2]), nand(nand(c[3], c[4]), c[5])):
    print("YES")
    sys.exit()
print("NO")
0