結果

問題 No.182 新規性の虜
ユーザー LEDLED
提出日時 2019-02-02 23:38:22
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 115 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-11-29 21:24:29
合計ジャッジ時間 77,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
28,160 KB
testcase_01 AC 93 ms
30,848 KB
testcase_02 AC 92 ms
18,852 KB
testcase_03 AC 91 ms
29,312 KB
testcase_04 AC 91 ms
29,184 KB
testcase_05 AC 89 ms
19,104 KB
testcase_06 AC 92 ms
30,336 KB
testcase_07 AC 92 ms
27,904 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 91 ms
12,160 KB
testcase_14 AC 91 ms
12,160 KB
testcase_15 AC 92 ms
12,160 KB
testcase_16 AC 94 ms
12,032 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,503 ms
14,976 KB
testcase_21 TLE -
testcase_22 AC 4,829 ms
16,256 KB
testcase_23 AC 91 ms
12,032 KB
testcase_24 TLE -
testcase_25 AC 160 ms
21,760 KB
testcase_26 AC 985 ms
12,544 KB
testcase_27 AC 93 ms
12,032 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n=gets.to_i
a=gets.split.map(&:to_i)
b=a.sort.map{|v| a.index(v) != a.rindex(v) ? v : nil }.compact
puts (a-b).size
0