結果
| 問題 | No.2090 否定論理積と充足可能性 |
| コンテスト | |
| ユーザー |
lam6er
|
| 提出日時 | 2025-03-20 21:20:46 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| コード長 | 257 bytes |
| 記録 | |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 96,232 KB |
| 実行使用メモリ | 79,176 KB |
| 最終ジャッジ日時 | 2026-07-07 13:34:26 |
| 合計ジャッジ時間 | 2,813 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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