結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
117,084 KB
testcase_01 AC 370 ms
101,244 KB
testcase_02 AC 384 ms
102,456 KB
testcase_03 AC 395 ms
107,872 KB
testcase_04 AC 451 ms
119,664 KB
testcase_05 AC 392 ms
105,564 KB
testcase_06 AC 402 ms
110,816 KB
testcase_07 AC 414 ms
112,084 KB
testcase_08 AC 435 ms
116,500 KB
testcase_09 AC 337 ms
97,524 KB
testcase_10 AC 383 ms
104,024 KB
testcase_11 AC 400 ms
107,448 KB
testcase_12 AC 390 ms
104,948 KB
testcase_13 AC 445 ms
115,652 KB
testcase_14 AC 410 ms
109,712 KB
testcase_15 AC 383 ms
105,808 KB
testcase_16 AC 374 ms
101,492 KB
testcase_17 AC 383 ms
101,800 KB
testcase_18 AC 406 ms
108,376 KB
testcase_19 AC 394 ms
106,916 KB
testcase_20 AC 388 ms
102,944 KB
testcase_21 AC 379 ms
102,492 KB
testcase_22 AC 366 ms
100,864 KB
testcase_23 AC 371 ms
100,868 KB
testcase_24 AC 387 ms
106,472 KB
testcase_25 AC 436 ms
115,312 KB
testcase_26 AC 409 ms
112,292 KB
testcase_27 AC 408 ms
107,464 KB
testcase_28 AC 416 ms
111,468 KB
testcase_29 AC 424 ms
114,048 KB
testcase_30 AC 371 ms
101,208 KB
testcase_31 AC 416 ms
110,052 KB
testcase_32 AC 384 ms
102,864 KB
testcase_33 AC 446 ms
116,020 KB
testcase_34 AC 451 ms
119,884 KB
testcase_35 AC 413 ms
110,664 KB
testcase_36 AC 437 ms
115,756 KB
testcase_37 AC 406 ms
111,936 KB
testcase_38 AC 384 ms
103,116 KB
testcase_39 AC 392 ms
106,112 KB
testcase_40 AC 393 ms
107,280 KB
testcase_41 AC 379 ms
101,192 KB
testcase_42 AC 405 ms
106,740 KB
testcase_43 AC 408 ms
107,556 KB
testcase_44 AC 424 ms
114,104 KB
testcase_45 AC 434 ms
115,308 KB
testcase_46 AC 436 ms
115,736 KB
testcase_47 AC 404 ms
106,380 KB
testcase_48 AC 410 ms
103,048 KB
testcase_49 AC 440 ms
113,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import functools
import itertools
import operator
import random


NUM_MAX_TRIAL = 10 ** 1


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