結果
| 問題 |
No.2090 否定論理積と充足可能性
|
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:20:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 257 bytes |
| コンパイル時間 | 197 ms |
| コンパイル使用メモリ | 82,236 KB |
| 実行使用メモリ | 53,220 KB |
| 最終ジャッジ日時 | 2025-03-20 21:22:01 |
| 合計ジャッジ時間 | 1,763 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
# Read the input as strings to handle very large numbers
A = input().split()
# Check if the first three are the same and the last three are the same
a0, a1, a2, a3, a4, a5 = A
if (a0 == a1 == a2) and (a3 == a4 == a5):
print("NO")
else:
print("YES")
lam6er