結果
| 問題 | No.2090 否定論理積と充足可能性 |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2022-10-02 06:29:26 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 97 ms / 2,000 ms |
| コード長 | 139 bytes |
| 記録 | |
| コンパイル時間 | 335 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-30 10:17:03 |
| 合計ジャッジ時間 | 3,612 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
import sys
input = sys.stdin.readline
a,b,c,d,e,f=map(int,input().split())
if a==b==c and d==e==f:
print("NO")
else:
print("YES")
titia