結果

問題 No.182 新規性の虜
ユーザー rkyrky
提出日時 2017-11-03 18:24:12
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 140 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-11-22 15:36:05
合計ジャッジ時間 69,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
30,336 KB
testcase_01 AC 84 ms
18,980 KB
testcase_02 AC 82 ms
18,976 KB
testcase_03 AC 84 ms
33,024 KB
testcase_04 AC 84 ms
18,976 KB
testcase_05 AC 85 ms
31,488 KB
testcase_06 AC 82 ms
18,980 KB
testcase_07 AC 82 ms
18,980 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 4,329 ms
14,848 KB
testcase_13 AC 83 ms
12,160 KB
testcase_14 AC 82 ms
12,288 KB
testcase_15 AC 80 ms
12,288 KB
testcase_16 AC 80 ms
12,032 KB
testcase_17 AC 90 ms
12,288 KB
testcase_18 TLE -
testcase_19 AC 3,590 ms
16,384 KB
testcase_20 AC 2,134 ms
14,336 KB
testcase_21 TLE -
testcase_22 AC 2,767 ms
15,744 KB
testcase_23 AC 86 ms
12,160 KB
testcase_24 TLE -
testcase_25 AC 115 ms
19,456 KB
testcase_26 AC 862 ms
12,928 KB
testcase_27 AC 82 ms
12,160 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - test_case
Syntax OK

ソースコード

diff #

test_case = gets.chomp.to_i
list = gets.chomp.split.map(&:to_i)
count = 0

list.uniq().each{|i| count += 1 if list.count(i) == 1}
puts count
0