結果
問題 | No.1876 Xor of Sum |
ユーザー | NP |
提出日時 | 2023-04-01 13:22:10 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 263 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,416 KB |
実行使用メモリ | 82,980 KB |
最終ジャッジ日時 | 2024-09-24 10:45:55 |
合計ジャッジ時間 | 4,080 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,424 KB |
testcase_01 | AC | 37 ms
51,936 KB |
testcase_02 | AC | 43 ms
59,400 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
from itertools import combinations # 入力 n = int(input()) a = list(map(int, input().split())) # 非空部分列の総和のxorを求める ans = 0 for i in range(1, n + 1): for c in combinations(a, i): ans ^= sum(c) # 結果を出力 print(ans)