結果

問題 No.5001 排他的論理和でランニング
ユーザー uafr_csuafr_cs
提出日時 2018-03-16 22:45:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,472 ms / 1,500 ms
コード長 1,119 bytes
コンパイル時間 2,295 ms
実行使用メモリ 57,972 KB
スコア 51,373,977
最終ジャッジ日時 2020-03-12 19:27:21
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,456 ms
52,240 KB
testcase_01 AC 1,048 ms
52,440 KB
testcase_02 AC 1,116 ms
52,504 KB
testcase_03 AC 1,259 ms
52,548 KB
testcase_04 AC 1,472 ms
52,440 KB
testcase_05 AC 1,167 ms
52,496 KB
testcase_06 AC 1,248 ms
52,272 KB
testcase_07 AC 1,306 ms
54,120 KB
testcase_08 AC 1,366 ms
54,280 KB
testcase_09 AC 1,008 ms
48,916 KB
testcase_10 AC 1,100 ms
52,544 KB
testcase_11 AC 1,173 ms
54,344 KB
testcase_12 AC 1,093 ms
52,364 KB
testcase_13 AC 1,391 ms
52,324 KB
testcase_14 AC 1,313 ms
52,384 KB
testcase_15 AC 1,183 ms
52,200 KB
testcase_16 AC 1,086 ms
54,340 KB
testcase_17 AC 1,099 ms
52,312 KB
testcase_18 AC 1,259 ms
52,256 KB
testcase_19 AC 1,167 ms
52,380 KB
testcase_20 AC 1,141 ms
55,852 KB
testcase_21 AC 1,120 ms
52,396 KB
testcase_22 AC 1,025 ms
52,468 KB
testcase_23 AC 1,034 ms
50,028 KB
testcase_24 AC 1,086 ms
54,228 KB
testcase_25 AC 1,300 ms
52,236 KB
testcase_26 AC 1,262 ms
54,368 KB
testcase_27 AC 1,137 ms
57,972 KB
testcase_28 AC 1,356 ms
52,532 KB
testcase_29 AC 1,390 ms
52,296 KB
testcase_30 AC 1,084 ms
55,836 KB
testcase_31 AC 1,315 ms
52,300 KB
testcase_32 AC 1,152 ms
52,332 KB
testcase_33 AC 1,435 ms
54,380 KB
testcase_34 AC 1,467 ms
0 KB
testcase_35 AC 1,325 ms
52,668 KB
testcase_36 AC 1,438 ms
57,900 KB
testcase_37 AC 1,311 ms
52,244 KB
testcase_38 AC 1,144 ms
52,192 KB
testcase_39 AC 1,139 ms
52,208 KB
testcase_40 AC 1,226 ms
55,908 KB
testcase_41 AC 1,076 ms
54,356 KB
testcase_42 AC 1,189 ms
52,216 KB
testcase_43 AC 1,242 ms
52,228 KB
testcase_44 AC 1,445 ms
52,384 KB
testcase_45 AC 1,412 ms
52,388 KB
testcase_46 AC 1,341 ms
54,004 KB
testcase_47 AC 1,198 ms
52,208 KB
testcase_48 AC 1,160 ms
54,312 KB
testcase_49 AC 1,332 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		long[] array = new long[N];
		for(int i = 0; i < N; i++){
			array[i] = sc.nextLong();
		}
		Arrays.sort(array);
		
		boolean[] used = new boolean[N];
		long max = 0;
		for(int i = 0; i < M; i++){
			used[(N - 1) - i] = true;
			max ^= array[(N - 1) - i];
		}
		
		for(int x = 0; x < 10000000; x++){
			final int fst = (int)(Math.random() * N);
			final int snd = (int)(Math.random() * N);
			if(used[fst] && used[snd]){ continue; }
			if(!used[fst] && !used[snd]){ continue; }
			
			final long next_max = max ^ array[fst] ^ array[snd];
			if(next_max > max){
				max = next_max;
				used[fst] = !used[fst];
				used[snd] = !used[snd];
			}
		}
		
		boolean first = true;
		for(int i = 0; i < N; i++){	
			if(!used[i]){ continue; }
			
			System.out.print((first ? "" : " ") + (array[i]));
			first = false;
		}
		System.out.println();
	}
}
0