結果

問題 No.5001 排他的論理和でランニング
ユーザー simansiman
提出日時 2022-07-12 22:21:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 139 ms / 1,500 ms
コード長 83 bytes
コンパイル時間 376 ms
実行使用メモリ 22,536 KB
スコア 24,513,786
最終ジャッジ日時 2022-07-12 22:21:45
合計ジャッジ時間 10,543 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
22,140 KB
testcase_01 AC 77 ms
14,964 KB
testcase_02 AC 83 ms
15,760 KB
testcase_03 AC 97 ms
18,156 KB
testcase_04 AC 131 ms
22,524 KB
testcase_05 AC 92 ms
16,952 KB
testcase_06 AC 106 ms
18,228 KB
testcase_07 AC 103 ms
18,816 KB
testcase_08 AC 131 ms
18,908 KB
testcase_09 AC 68 ms
13,824 KB
testcase_10 AC 88 ms
16,304 KB
testcase_11 AC 98 ms
17,468 KB
testcase_12 AC 82 ms
15,968 KB
testcase_13 AC 130 ms
18,860 KB
testcase_14 AC 107 ms
18,452 KB
testcase_15 AC 90 ms
16,416 KB
testcase_16 AC 78 ms
14,840 KB
testcase_17 AC 85 ms
15,912 KB
testcase_18 AC 101 ms
18,556 KB
testcase_19 AC 87 ms
16,872 KB
testcase_20 AC 82 ms
16,088 KB
testcase_21 AC 82 ms
16,156 KB
testcase_22 AC 72 ms
14,552 KB
testcase_23 AC 70 ms
14,300 KB
testcase_24 AC 80 ms
16,404 KB
testcase_25 AC 103 ms
19,928 KB
testcase_26 AC 93 ms
18,648 KB
testcase_27 AC 85 ms
16,936 KB
testcase_28 AC 111 ms
18,640 KB
testcase_29 AC 119 ms
18,952 KB
testcase_30 AC 77 ms
14,788 KB
testcase_31 AC 103 ms
18,624 KB
testcase_32 AC 82 ms
16,108 KB
testcase_33 AC 134 ms
22,364 KB
testcase_34 AC 139 ms
22,536 KB
testcase_35 AC 107 ms
18,764 KB
testcase_36 AC 125 ms
21,748 KB
testcase_37 AC 111 ms
18,808 KB
testcase_38 AC 88 ms
16,020 KB
testcase_39 AC 92 ms
16,900 KB
testcase_40 AC 91 ms
17,704 KB
testcase_41 AC 76 ms
14,924 KB
testcase_42 AC 92 ms
17,404 KB
testcase_43 AC 92 ms
17,964 KB
testcase_44 AC 111 ms
19,112 KB
testcase_45 AC 118 ms
21,388 KB
testcase_46 AC 110 ms
20,416 KB
testcase_47 AC 90 ms
16,804 KB
testcase_48 AC 88 ms
16,192 KB
testcase_49 AC 132 ms
18,796 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)

puts A.take(M).join(' ')
0