結果
| 問題 | No.3177 output only nand problem |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-06-13 22:21:39 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 2,000 ms |
| + 361µs | |
| コード長 | 238 bytes |
| 記録 | |
| コンパイル時間 | 217 ms |
| コンパイル使用メモリ | 96,240 KB |
| 実行使用メモリ | 78,740 KB |
| 最終ジャッジ日時 | 2026-07-12 05:27:28 |
| 合計ジャッジ時間 | 1,132 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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()