結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
19,864 KB
testcase_01 AC 17 ms
12,276 KB
testcase_02 AC 23 ms
13,104 KB
testcase_03 AC 39 ms
15,224 KB
testcase_04 AC 77 ms
20,620 KB
testcase_05 AC 34 ms
14,328 KB
testcase_06 AC 39 ms
15,832 KB
testcase_07 AC 45 ms
16,672 KB
testcase_08 AC 70 ms
17,044 KB
testcase_09 AC 10 ms
11,448 KB
testcase_10 AC 29 ms
13,784 KB
testcase_11 AC 37 ms
14,436 KB
testcase_12 AC 24 ms
13,520 KB
testcase_13 AC 70 ms
16,908 KB
testcase_14 AC 48 ms
16,432 KB
testcase_15 AC 30 ms
14,276 KB
testcase_16 AC 18 ms
12,200 KB
testcase_17 AC 25 ms
13,076 KB
testcase_18 AC 45 ms
16,176 KB
testcase_19 AC 30 ms
14,360 KB
testcase_20 AC 26 ms
13,436 KB
testcase_21 AC 26 ms
13,360 KB
testcase_22 AC 14 ms
12,120 KB
testcase_23 AC 13 ms
11,912 KB
testcase_24 AC 27 ms
13,792 KB
testcase_25 AC 50 ms
16,768 KB
testcase_26 AC 40 ms
16,172 KB
testcase_27 AC 29 ms
14,348 KB
testcase_28 AC 49 ms
16,612 KB
testcase_29 AC 55 ms
16,736 KB
testcase_30 AC 17 ms
12,236 KB
testcase_31 AC 49 ms
16,560 KB
testcase_32 AC 27 ms
13,504 KB
testcase_33 AC 74 ms
17,316 KB
testcase_34 AC 78 ms
20,596 KB
testcase_35 AC 48 ms
16,564 KB
testcase_36 AC 67 ms
19,356 KB
testcase_37 AC 46 ms
16,700 KB
testcase_38 AC 26 ms
13,356 KB
testcase_39 AC 34 ms
14,348 KB
testcase_40 AC 36 ms
14,876 KB
testcase_41 AC 17 ms
12,296 KB
testcase_42 AC 36 ms
14,368 KB
testcase_43 AC 38 ms
15,232 KB
testcase_44 AC 57 ms
16,904 KB
testcase_45 AC 60 ms
17,088 KB
testcase_46 AC 53 ms
16,928 KB
testcase_47 AC 33 ms
14,396 KB
testcase_48 AC 27 ms
13,596 KB
testcase_49 AC 62 ms
16,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def ascan; gets.split.map(&:to_i);end
n,m = ascan
puts ascan[0...m]*" "
0