結果

問題 No.5001 排他的論理和でランニング
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-03-21 16:24:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 478 ms / 1,500 ms
コード長 722 bytes
コンパイル時間 267 ms
実行使用メモリ 124,844 KB
スコア 49,807,152
最終ジャッジ日時 2020-03-12 20:20:36
ジャッジサーバーID
(参考情報)
judge8 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
120,332 KB
testcase_01 AC 396 ms
101,200 KB
testcase_02 AC 403 ms
102,556 KB
testcase_03 AC 428 ms
109,856 KB
testcase_04 AC 470 ms
124,044 KB
testcase_05 AC 422 ms
106,984 KB
testcase_06 AC 425 ms
110,800 KB
testcase_07 AC 438 ms
112,316 KB
testcase_08 AC 473 ms
122,360 KB
testcase_09 AC 363 ms
97,860 KB
testcase_10 AC 410 ms
105,824 KB
testcase_11 AC 424 ms
109,628 KB
testcase_12 AC 414 ms
104,844 KB
testcase_13 AC 470 ms
120,820 KB
testcase_14 AC 438 ms
111,880 KB
testcase_15 AC 411 ms
106,400 KB
testcase_16 AC 406 ms
101,296 KB
testcase_17 AC 402 ms
101,656 KB
testcase_18 AC 430 ms
111,652 KB
testcase_19 AC 412 ms
106,312 KB
testcase_20 AC 412 ms
103,076 KB
testcase_21 AC 406 ms
102,468 KB
testcase_22 AC 392 ms
101,020 KB
testcase_23 AC 395 ms
100,820 KB
testcase_24 AC 414 ms
106,224 KB
testcase_25 AC 455 ms
115,372 KB
testcase_26 AC 434 ms
112,352 KB
testcase_27 AC 412 ms
107,132 KB
testcase_28 AC 439 ms
111,584 KB
testcase_29 AC 445 ms
113,776 KB
testcase_30 AC 400 ms
101,340 KB
testcase_31 AC 444 ms
112,144 KB
testcase_32 AC 412 ms
102,848 KB
testcase_33 AC 478 ms
121,496 KB
testcase_34 AC 475 ms
124,844 KB
testcase_35 AC 439 ms
111,092 KB
testcase_36 AC 461 ms
116,148 KB
testcase_37 AC 442 ms
111,884 KB
testcase_38 AC 403 ms
103,080 KB
testcase_39 AC 414 ms
108,268 KB
testcase_40 AC 418 ms
107,460 KB
testcase_41 AC 400 ms
100,968 KB
testcase_42 AC 420 ms
108,348 KB
testcase_43 AC 426 ms
109,824 KB
testcase_44 AC 459 ms
113,856 KB
testcase_45 AC 462 ms
115,320 KB
testcase_46 AC 445 ms
115,724 KB
testcase_47 AC 410 ms
107,140 KB
testcase_48 AC 410 ms
103,020 KB
testcase_49 AC 452 ms
118,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import functools
import itertools
import operator
import random


NUM_MAX_TRIAL = 20


def fold_xor(iterable):
    return functools.reduce(operator.xor, iterable)


def in_place_solve(m, xs, num_max_trial=NUM_MAX_TRIAL):
    random.shuffle(xs)
    max_score = 0
    res = None
    for i, ys in enumerate(itertools.combinations(xs, m)):
        if i >= num_max_trial:
            break
        score = fold_xor(ys)
        if score > max_score:
            max_score = score
            res = ys
    return res


def main():
    _, m = (int(x) for x in input().split())
    xs = [int(x) for x in input().split()]
    res = in_place_solve(m, xs)
    print(*res)


if __name__ == '__main__':
    main()
0