結果
| 問題 |
No.2090 否定論理積と充足可能性
|
| コンテスト | |
| ユーザー |
shauuebbit
|
| 提出日時 | 2022-09-30 22:56:00 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 276 bytes |
| コンパイル時間 | 1,857 ms |
| コンパイル使用メモリ | 191,900 KB |
| 最終ジャッジ日時 | 2025-02-07 19:44:34 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
long long A[6];
for (int i = 0; i < 6; i++) cin >> A[i];
if (A[0] != A[2] || A[1] != A[2] || A[3] != A[5] || A[4] != A[5]) {
puts("YES");
} else {
puts("NO");
}
return 0;
}
shauuebbit