結果
問題 | No.1674 Introduction to XOR |
ユーザー |
|
提出日時 | 2021-09-11 11:52:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 38 ms / 1,000 ms |
コード長 | 174 bytes |
コンパイル時間 | 213 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 53,700 KB |
最終ジャッジ日時 | 2024-06-22 19:31:26 |
合計ジャッジ時間 | 2,036 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
N = int(input()) A = list(map(int, input().split())) sums = 0 for a in A: sums = sums | a for i in range(65): if not sums >> i & 1: print(2**i) break