結果
問題 |
No.2090 否定論理積と充足可能性
|
ユーザー |
![]() |
提出日時 | 2025-03-20 18:57:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,288 KB |
実行使用メモリ | 53,676 KB |
最終ジャッジ日時 | 2025-03-20 18:58:36 |
合計ジャッジ時間 | 1,639 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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")