結果

問題 No.182 新規性の虜
ユーザー harhogefooharhogefoo
提出日時 2016-10-12 07:58:17
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-11-22 02:30:14
合計ジャッジ時間 34,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
17,280 KB
testcase_01 AC 80 ms
28,800 KB
testcase_02 AC 84 ms
26,624 KB
testcase_03 AC 86 ms
26,496 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 89 ms
12,032 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 85 ms
12,032 KB
testcase_08 AC 117 ms
16,640 KB
testcase_09 AC 255 ms
19,456 KB
testcase_10 AC 235 ms
18,816 KB
testcase_11 AC 149 ms
17,792 KB
testcase_12 AC 112 ms
13,952 KB
testcase_13 AC 87 ms
12,032 KB
testcase_14 WA -
testcase_15 AC 90 ms
12,288 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 86 ms
11,904 KB
testcase_24 AC 140 ms
20,480 KB
testcase_25 AC 143 ms
20,096 KB
testcase_26 AC 95 ms
12,672 KB
testcase_27 AC 85 ms
12,288 KB
evil01.txt AC 141 ms
21,632 KB
evil02.txt AC 141 ms
37,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.chomp.split(" ").map(&:to_i).sort

(a.length - 1).times do |i|
  if a[i] == a[i+1]
    a.delete(a[i])
  end
end
puts a.length
0