結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2025-11-20 00:39:48 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 44 ms / 5,000 ms |
| コード長 | 160 bytes |
| コンパイル時間 | 394 ms |
| コンパイル使用メモリ | 82,728 KB |
| 実行使用メモリ | 62,976 KB |
| 最終ジャッジ日時 | 2025-11-20 00:39:51 |
| 合計ジャッジ時間 | 2,072 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
B = []
for a in A:
for b in B:
a = min(a, a^b)
if a:
B.append(a)
print(1<<len(B))
detteiuu