結果

問題 No.5001 排他的論理和でランニング
ユーザー GrayCoderGrayCoder
提出日時 2018-03-17 14:15:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 1,500 ms
コード長 932 bytes
コンパイル時間 64 ms
実行使用メモリ 24,492 KB
スコア 34,416,403
最終ジャッジ日時 2020-03-12 20:06:57
ジャッジサーバーID
(参考情報)
judge6 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
24,492 KB
testcase_01 AC 38 ms
10,428 KB
testcase_02 AC 49 ms
13,104 KB
testcase_03 AC 77 ms
15,092 KB
testcase_04 AC 152 ms
24,256 KB
testcase_05 AC 60 ms
14,172 KB
testcase_06 AC 108 ms
17,088 KB
testcase_07 AC 114 ms
17,816 KB
testcase_08 AC 125 ms
19,304 KB
testcase_09 AC 21 ms
8,424 KB
testcase_10 AC 52 ms
13,404 KB
testcase_11 AC 65 ms
14,036 KB
testcase_12 AC 60 ms
14,748 KB
testcase_13 AC 127 ms
23,152 KB
testcase_14 AC 87 ms
16,232 KB
testcase_15 AC 62 ms
14,208 KB
testcase_16 AC 36 ms
10,428 KB
testcase_17 AC 45 ms
13,072 KB
testcase_18 AC 83 ms
15,692 KB
testcase_19 AC 70 ms
15,124 KB
testcase_20 AC 53 ms
13,400 KB
testcase_21 AC 49 ms
13,200 KB
testcase_22 AC 31 ms
10,304 KB
testcase_23 AC 27 ms
9,512 KB
testcase_24 AC 72 ms
14,752 KB
testcase_25 AC 138 ms
23,472 KB
testcase_26 AC 116 ms
18,144 KB
testcase_27 AC 83 ms
15,200 KB
testcase_28 AC 108 ms
17,168 KB
testcase_29 AC 126 ms
18,856 KB
testcase_30 AC 33 ms
10,108 KB
testcase_31 AC 95 ms
16,580 KB
testcase_32 AC 51 ms
13,280 KB
testcase_33 AC 133 ms
23,856 KB
testcase_34 AC 152 ms
24,332 KB
testcase_35 AC 104 ms
17,180 KB
testcase_36 AC 147 ms
23,916 KB
testcase_37 AC 115 ms
17,744 KB
testcase_38 AC 52 ms
13,428 KB
testcase_39 AC 59 ms
13,824 KB
testcase_40 AC 80 ms
15,440 KB
testcase_41 AC 31 ms
9,900 KB
testcase_42 AC 69 ms
14,588 KB
testcase_43 AC 80 ms
15,420 KB
testcase_44 AC 135 ms
23,184 KB
testcase_45 AC 140 ms
24,028 KB
testcase_46 AC 147 ms
24,464 KB
testcase_47 AC 67 ms
14,092 KB
testcase_48 AC 54 ms
13,400 KB
testcase_49 AC 111 ms
17,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    N, M = map(int, input().split())
    A = set(map(int, input().split()))

    if M == 1:
        print(max(N))
        return
    if N == M:
        print(*A, sep=' ')
        return

    num = defaultdict(list)
    for i in A:
        l = len(f'{i:b}') - 1
        num[l].append(i)

    rm = set()
    n = N - M
    ans = []
    for i, j in sorted(num.items(), reverse=1):
        while len(j) > 1:
            rm.add(num[i].pop(-1))
            if len(rm) == n:
                for k in num.values():
                    ans.extend(k)
                print(*ans, sep=' ')
                return
        break

    for i, j in sorted(num.items()):
        while len(j) > 0:
            rm.add(num[i].pop(-1))
            if len(rm) == n:
                for k in num.values():
                    ans.extend(k)
                print(*ans, sep=' ')
                return

main()
0