結果
| 問題 |
No.3177 output only nand problem
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-06-13 22:21:39 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| コード長 | 238 bytes |
| コンパイル時間 | 205 ms |
| コンパイル使用メモリ | 82,668 KB |
| 実行使用メモリ | 52,720 KB |
| 最終ジャッジ日時 | 2025-06-13 22:21:44 |
| 合計ジャッジ時間 | 605 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
for a in range(2):
for b in range(2):
for c in range(2):
v1 = not ((not (a and b)) and c)
v2 = not (a and (not (b and c)))
if v1 != v2:
print(a, b, c)
exit()