結果
| 問題 | No.183 たのしい排他的論理和(EASY) |
| コンテスト | |
| ユーザー |
shobonvip
|
| 提出日時 | 2022-03-12 14:45:27 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 5,000 ms |
| コード長 | 149 bytes |
| コンパイル時間 | 403 ms |
| コンパイル使用メモリ | 82,140 KB |
| 実行使用メモリ | 62,376 KB |
| 最終ジャッジ日時 | 2024-09-16 21:24:56 |
| 合計ジャッジ時間 | 2,519 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
n = int(input()) a = list(map(int,input().split())) b = [] for i in a: for j in b: i = min(i, i^j) if i > 0: b.append(i) print(pow(2, len(b)))
shobonvip