結果

問題 No.5001 排他的論理和でランニング
ユーザー %20%20
提出日時 2018-03-16 23:17:07
言語 Perl
(5.38.2)
結果
AC  
実行時間 170 ms / 1,500 ms
コード長 253 bytes
コンパイル時間 10 ms
実行使用メモリ 22,872 KB
スコア 40,341,790
最終ジャッジ日時 2020-03-12 19:34:30
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
22,448 KB
testcase_01 AC 25 ms
6,880 KB
testcase_02 AC 36 ms
8,380 KB
testcase_03 AC 75 ms
12,888 KB
testcase_04 AC 170 ms
22,872 KB
testcase_05 AC 53 ms
10,088 KB
testcase_06 AC 107 ms
15,928 KB
testcase_07 AC 119 ms
18,096 KB
testcase_08 AC 137 ms
19,680 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 41 ms
9,016 KB
testcase_11 AC 61 ms
11,320 KB
testcase_12 AC 47 ms
9,708 KB
testcase_13 AC 139 ms
20,200 KB
testcase_14 AC 89 ms
14,484 KB
testcase_15 AC 52 ms
10,192 KB
testcase_16 AC 24 ms
6,908 KB
testcase_17 AC 33 ms
8,100 KB
testcase_18 AC 82 ms
13,596 KB
testcase_19 AC 63 ms
11,444 KB
testcase_20 AC 41 ms
9,224 KB
testcase_21 AC 37 ms
8,628 KB
testcase_22 AC 16 ms
5,912 KB
testcase_23 AC 11 ms
5,396 KB
testcase_24 AC 59 ms
11,288 KB
testcase_25 AC 142 ms
20,204 KB
testcase_26 AC 119 ms
18,036 KB
testcase_27 AC 73 ms
12,732 KB
testcase_28 AC 110 ms
16,452 KB
testcase_29 AC 133 ms
19,556 KB
testcase_30 AC 19 ms
6,468 KB
testcase_31 AC 98 ms
15,036 KB
testcase_32 AC 41 ms
8,924 KB
testcase_33 AC 163 ms
21,328 KB
testcase_34 AC 168 ms
22,640 KB
testcase_35 AC 106 ms
15,748 KB
testcase_36 AC 155 ms
21,580 KB
testcase_37 AC 117 ms
18,128 KB
testcase_38 AC 41 ms
9,084 KB
testcase_39 AC 52 ms
10,208 KB
testcase_40 AC 75 ms
12,768 KB
testcase_41 AC 17 ms
6,392 KB
testcase_42 AC 62 ms
11,292 KB
testcase_43 AC 74 ms
12,688 KB
testcase_44 AC 136 ms
19,920 KB
testcase_45 AC 150 ms
21,124 KB
testcase_46 AC 155 ms
21,180 KB
testcase_47 AC 59 ms
11,328 KB
testcase_48 AC 43 ms
9,488 KB
testcase_49 AC 121 ms
17,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($N,$M)=split$",<>;
@A=sort{$b-$a}map$_+0,split$",<>;
$x^=$A[$_],$f[$_]=1for($i=$N-$M)..$N-1;
for(0..$N-1){
	last if$i==$_;
	if(($x^$A[$i]^$A[$_])>$x){
		$x^=$A[$i]^$A[$_];
		$f[$i++]^=1;
		$f[$_]^=1;
	}
	last if$i==$N
}
print"@A[grep$f[$_],0..$N-1]\n"
0