結果

問題 No.5001 排他的論理和でランニング
ユーザー uafr_csuafr_cs
提出日時 2018-03-16 22:34:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 671 ms / 1,500 ms
コード長 522 bytes
コンパイル時間 2,740 ms
実行使用メモリ 56,364 KB
スコア 26,734,226
最終ジャッジ日時 2020-03-12 19:24:37
ジャッジサーバーID
(参考情報)
judge6 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 636 ms
52,144 KB
testcase_01 AC 327 ms
52,384 KB
testcase_02 AC 368 ms
52,236 KB
testcase_03 AC 485 ms
55,848 KB
testcase_04 AC 671 ms
52,292 KB
testcase_05 AC 421 ms
55,720 KB
testcase_06 AC 489 ms
52,220 KB
testcase_07 AC 512 ms
52,640 KB
testcase_08 AC 646 ms
52,324 KB
testcase_09 AC 229 ms
49,200 KB
testcase_10 AC 408 ms
54,608 KB
testcase_11 AC 456 ms
54,328 KB
testcase_12 AC 374 ms
52,336 KB
testcase_13 AC 646 ms
52,292 KB
testcase_14 AC 503 ms
52,228 KB
testcase_15 AC 414 ms
52,296 KB
testcase_16 AC 327 ms
56,124 KB
testcase_17 AC 373 ms
52,408 KB
testcase_18 AC 502 ms
52,404 KB
testcase_19 AC 415 ms
52,344 KB
testcase_20 AC 395 ms
54,232 KB
testcase_21 AC 380 ms
52,656 KB
testcase_22 AC 303 ms
52,436 KB
testcase_23 AC 278 ms
49,752 KB
testcase_24 AC 385 ms
54,164 KB
testcase_25 AC 537 ms
52,268 KB
testcase_26 AC 483 ms
52,228 KB
testcase_27 AC 421 ms
52,236 KB
testcase_28 AC 537 ms
52,300 KB
testcase_29 AC 547 ms
52,504 KB
testcase_30 AC 318 ms
52,480 KB
testcase_31 AC 518 ms
52,400 KB
testcase_32 AC 378 ms
52,288 KB
testcase_33 AC 656 ms
52,500 KB
testcase_34 AC 668 ms
52,444 KB
testcase_35 AC 505 ms
52,284 KB
testcase_36 AC 608 ms
52,160 KB
testcase_37 AC 519 ms
52,320 KB
testcase_38 AC 375 ms
56,364 KB
testcase_39 AC 412 ms
52,164 KB
testcase_40 AC 473 ms
52,488 KB
testcase_41 AC 316 ms
55,880 KB
testcase_42 AC 445 ms
52,184 KB
testcase_43 AC 471 ms
52,404 KB
testcase_44 AC 574 ms
52,300 KB
testcase_45 AC 598 ms
54,428 KB
testcase_46 AC 557 ms
52,360 KB
testcase_47 AC 417 ms
52,248 KB
testcase_48 AC 380 ms
52,368 KB
testcase_49 AC 590 ms
52,588 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);
		
		for(int i = 0; i < M; i++){	
			System.out.print((i == 0 ? "" : " ") + (array[(N - 1) - i]));
		}
		System.out.println();
	}
}
0