結果

問題 No.5001 排他的論理和でランニング
ユーザー uafr_csuafr_cs
提出日時 2018-03-16 22:23:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 657 ms / 1,500 ms
コード長 461 bytes
コンパイル時間 2,225 ms
実行使用メモリ 55,988 KB
スコア 24,513,786
最終ジャッジ日時 2020-03-12 19:22:18
ジャッジサーバーID
(参考情報)
judge9 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 614 ms
52,864 KB
testcase_01 AC 332 ms
52,440 KB
testcase_02 AC 368 ms
53,868 KB
testcase_03 AC 458 ms
52,184 KB
testcase_04 AC 641 ms
52,520 KB
testcase_05 AC 406 ms
52,124 KB
testcase_06 AC 470 ms
52,812 KB
testcase_07 AC 499 ms
52,408 KB
testcase_08 AC 637 ms
52,584 KB
testcase_09 AC 226 ms
48,952 KB
testcase_10 AC 388 ms
51,912 KB
testcase_11 AC 439 ms
52,160 KB
testcase_12 AC 376 ms
52,476 KB
testcase_13 AC 638 ms
54,072 KB
testcase_14 AC 501 ms
52,544 KB
testcase_15 AC 400 ms
52,136 KB
testcase_16 AC 340 ms
52,360 KB
testcase_17 AC 373 ms
54,248 KB
testcase_18 AC 484 ms
53,976 KB
testcase_19 AC 396 ms
52,116 KB
testcase_20 AC 369 ms
52,164 KB
testcase_21 AC 376 ms
55,988 KB
testcase_22 AC 296 ms
54,200 KB
testcase_23 AC 284 ms
49,920 KB
testcase_24 AC 377 ms
52,136 KB
testcase_25 AC 538 ms
54,992 KB
testcase_26 AC 483 ms
52,372 KB
testcase_27 AC 414 ms
52,444 KB
testcase_28 AC 521 ms
52,132 KB
testcase_29 AC 544 ms
52,512 KB
testcase_30 AC 326 ms
54,084 KB
testcase_31 AC 506 ms
54,544 KB
testcase_32 AC 382 ms
52,256 KB
testcase_33 AC 649 ms
52,220 KB
testcase_34 AC 657 ms
52,516 KB
testcase_35 AC 509 ms
54,420 KB
testcase_36 AC 598 ms
54,084 KB
testcase_37 AC 517 ms
52,092 KB
testcase_38 AC 377 ms
52,156 KB
testcase_39 AC 424 ms
52,128 KB
testcase_40 AC 448 ms
52,596 KB
testcase_41 AC 316 ms
52,324 KB
testcase_42 AC 439 ms
52,220 KB
testcase_43 AC 469 ms
52,156 KB
testcase_44 AC 561 ms
54,608 KB
testcase_45 AC 588 ms
52,564 KB
testcase_46 AC 540 ms
54,676 KB
testcase_47 AC 419 ms
52,492 KB
testcase_48 AC 370 ms
52,268 KB
testcase_49 AC 581 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		}
		
		for(int i = 0; i < M; i++){
			System.out.print((i == 0 ? "" : " ") + (array[i]));
		}
		System.out.println();
	}
}
0