結果
問題 | No.1674 Introduction to XOR |
ユーザー |
👑 ![]() |
提出日時 | 2021-09-10 21:29:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 1,000 ms |
コード長 | 249 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 82,100 KB |
実行使用メモリ | 57,844 KB |
最終ジャッジ日時 | 2024-06-11 22:31:28 |
合計ジャッジ時間 | 2,201 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
""""""import sysfrom sys import stdinN = int(stdin.readline())A = list(map(int,stdin.readline().split()))for i in range(70):x = 2**ifor a in A:if a & x != 0:breakelse:print (x)break