結果
問題 |
No.1674 Introduction to XOR
|
ユーザー |
|
提出日時 | 2023-06-12 21:17:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 39 ms / 1,000 ms |
コード長 | 115 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,788 KB |
実行使用メモリ | 53,336 KB |
最終ジャッジ日時 | 2024-06-11 21:20:11 |
合計ジャッジ時間 | 1,655 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
N = int(input()) A = list(map(int,input().split())) M = (1 << 63) - 1 for R in range(N): M &= ~A[R] print(M & -M)