結果

問題 No.5001 排他的論理和でランニング
ユーザー 👑 tatt61880tatt61880
提出日時 2020-04-28 18:49:49
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 91 ms / 1,500 ms
コード長 241 bytes
コンパイル時間 2,098 ms
実行使用メモリ 4,468 KB
スコア 24,513,786
最終ジャッジ日時 2021-07-31 22:30:53
合計ジャッジ時間 11,087 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
4,204 KB
testcase_01 AC 9 ms
3,956 KB
testcase_02 AC 16 ms
3,904 KB
testcase_03 AC 42 ms
3,936 KB
testcase_04 AC 83 ms
4,204 KB
testcase_05 AC 31 ms
3,908 KB
testcase_06 AC 34 ms
4,112 KB
testcase_07 AC 41 ms
3,960 KB
testcase_08 AC 91 ms
4,360 KB
testcase_09 AC 2 ms
3,856 KB
testcase_10 AC 28 ms
3,908 KB
testcase_11 AC 38 ms
3,848 KB
testcase_12 AC 16 ms
3,912 KB
testcase_13 AC 85 ms
4,264 KB
testcase_14 AC 51 ms
4,048 KB
testcase_15 AC 27 ms
3,880 KB
testcase_16 AC 13 ms
3,956 KB
testcase_17 AC 22 ms
4,024 KB
testcase_18 AC 49 ms
4,000 KB
testcase_19 AC 26 ms
3,872 KB
testcase_20 AC 20 ms
3,952 KB
testcase_21 AC 23 ms
3,968 KB
testcase_22 AC 6 ms
3,916 KB
testcase_23 AC 6 ms
3,956 KB
testcase_24 AC 17 ms
4,016 KB
testcase_25 AC 39 ms
4,188 KB
testcase_26 AC 33 ms
3,936 KB
testcase_27 AC 21 ms
3,924 KB
testcase_28 AC 50 ms
4,004 KB
testcase_29 AC 53 ms
4,200 KB
testcase_30 AC 12 ms
3,988 KB
testcase_31 AC 52 ms
4,104 KB
testcase_32 AC 23 ms
3,844 KB
testcase_33 AC 89 ms
4,264 KB
testcase_34 AC 88 ms
4,200 KB
testcase_35 AC 49 ms
3,996 KB
testcase_36 AC 66 ms
4,156 KB
testcase_37 AC 44 ms
3,932 KB
testcase_38 AC 19 ms
3,904 KB
testcase_39 AC 34 ms
3,840 KB
testcase_40 AC 33 ms
3,944 KB
testcase_41 AC 11 ms
3,924 KB
testcase_42 AC 37 ms
3,916 KB
testcase_43 AC 40 ms
3,924 KB
testcase_44 AC 57 ms
4,204 KB
testcase_45 AC 63 ms
4,200 KB
testcase_46 AC 45 ms
4,188 KB
testcase_47 AC 29 ms
3,800 KB
testcase_48 AC 20 ms
3,964 KB
testcase_49 AC 75 ms
3,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	var a: []int :: #[n]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	for i(0, m - 1)
		do cui@print(a[i].toStr() ~ (i = m - 1 ?("\n", " ")))
	end for
end func
0