結果

問題 No.182 新規性の虜
ユーザー Lo_OTLo_OT
提出日時 2018-03-12 21:59:36
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 104 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,152 KB
最終ジャッジ日時 2024-11-14 13:31:27
合計ジャッジ時間 77,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
29,952 KB
testcase_01 AC 83 ms
33,152 KB
testcase_02 AC 83 ms
32,512 KB
testcase_03 AC 85 ms
19,104 KB
testcase_04 AC 83 ms
31,104 KB
testcase_05 AC 83 ms
18,852 KB
testcase_06 AC 82 ms
28,544 KB
testcase_07 AC 84 ms
18,984 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 4,444 ms
14,464 KB
testcase_13 AC 87 ms
12,160 KB
testcase_14 AC 86 ms
12,288 KB
testcase_15 AC 86 ms
12,288 KB
testcase_16 AC 85 ms
12,288 KB
testcase_17 AC 87 ms
12,032 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,609 ms
14,336 KB
testcase_21 TLE -
testcase_22 AC 4,883 ms
15,488 KB
testcase_23 AC 85 ms
12,160 KB
testcase_24 TLE -
testcase_25 AC 127 ms
19,712 KB
testcase_26 AC 879 ms
12,928 KB
testcase_27 AC 84 ms
12,160 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets;
a = gets.split.map(&:to_i)
(a.uniq).each do |i|
    a.delete(i) if a.count(i) > 1
end

puts a.size
0