結果

問題 No.2090 否定論理積と充足可能性
ユーザー a a
提出日時 2022-09-30 23:20:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-23 01:04:49
合計ジャッジ時間 1,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

x=list(map(int,input().split()))
if x[3]==x[2] or x[4]==x[2] :
   if x[0]==x[5] or x[1]==x[5]:
     print("NO")
   else:
    print("Yes")
else:
    print("YES")
0