結果

問題 No.1082 XORのXOR
ユーザー cleanttedcleantted
提出日時 2020-06-27 20:46:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 951 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-05 21:19:03
合計ジャッジ時間 22,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,392 KB
testcase_01 AC 36 ms
11,392 KB
testcase_02 AC 34 ms
11,264 KB
testcase_03 AC 815 ms
11,392 KB
testcase_04 AC 817 ms
11,520 KB
testcase_05 AC 826 ms
11,392 KB
testcase_06 AC 826 ms
11,392 KB
testcase_07 AC 822 ms
11,520 KB
testcase_08 AC 824 ms
11,392 KB
testcase_09 AC 837 ms
11,392 KB
testcase_10 AC 819 ms
11,392 KB
testcase_11 AC 817 ms
11,520 KB
testcase_12 AC 822 ms
11,264 KB
testcase_13 AC 825 ms
11,264 KB
testcase_14 AC 825 ms
11,520 KB
testcase_15 AC 822 ms
11,392 KB
testcase_16 AC 822 ms
11,264 KB
testcase_17 AC 880 ms
11,392 KB
testcase_18 AC 822 ms
11,392 KB
testcase_19 AC 821 ms
11,520 KB
testcase_20 AC 825 ms
11,392 KB
testcase_21 AC 818 ms
11,392 KB
testcase_22 AC 832 ms
11,520 KB
testcase_23 AC 825 ms
11,520 KB
testcase_24 AC 829 ms
11,392 KB
testcase_25 AC 828 ms
11,392 KB
testcase_26 AC 833 ms
11,392 KB
testcase_27 AC 827 ms
11,648 KB
testcase_28 AC 36 ms
11,264 KB
testcase_29 AC 36 ms
11,264 KB
testcase_30 AC 36 ms
11,264 KB
testcase_31 AC 35 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import heapq
import sys
import itertools
import math
import queue
from functools import lru_cache
input = sys.stdin.readline
sys.setrecursionlimit(1000000)
mod = 10 ** 9 + 7 

def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for n in range(N)]


class V:
    def __init__(self, f, v=None):
        self.f = f
        self.v = v
 
    def __str__(self):
        return str(self.v)
 
    def ud(self, n):
        if n is None:
            return

        if self.v is None:
            self.v = n
            return
        self.v = self.f(self.v, n) 


def main():
    N = int(input())
    A = read_list()
    
    res = V(max)
    for i in range(N - 1):
        for j in range(i, N):
            res.ud(A[i]^A[j])

    print(res)


if __name__ == "__main__":
    main()

0