結果

問題 No.1285 ゴミ捨て
ユーザー tamura2004tamura2004
提出日時 2021-01-21 23:34:57
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 183 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-06-07 11:01:27
合計ジャッジ時間 4,818 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 88 ms
11,904 KB
testcase_04 WA -
testcase_05 AC 78 ms
12,032 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 153 ms
14,336 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 114 ms
13,056 KB
testcase_10 AC 144 ms
14,080 KB
testcase_11 AC 139 ms
13,824 KB
testcase_12 AC 124 ms
13,696 KB
testcase_13 AC 125 ms
13,312 KB
testcase_14 AC 161 ms
14,336 KB
testcase_15 AC 143 ms
13,952 KB
testcase_16 AC 106 ms
12,544 KB
testcase_17 AC 110 ms
12,544 KB
testcase_18 AC 109 ms
12,672 KB
testcase_19 AC 125 ms
13,056 KB
testcase_20 AC 106 ms
12,672 KB
testcase_21 AC 111 ms
12,672 KB
testcase_22 AC 165 ms
14,464 KB
testcase_23 AC 155 ms
14,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_s.to_i
a = Array.new(n) { gets.to_s.to_i }.sort
case n
when 1
  puts 1
else
  a.each_cons(2) do |i, j|
    if j - i == 1
      puts 2
      exit
    end
  end
end

puts 1
0