結果

問題 No.182 新規性の虜
ユーザー rkyrky
提出日時 2017-11-03 18:26:04
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 134 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 36,352 KB
最終ジャッジ日時 2024-11-22 15:37:59
合計ジャッジ時間 70,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
30,080 KB
testcase_01 AC 84 ms
34,176 KB
testcase_02 AC 84 ms
33,152 KB
testcase_03 AC 85 ms
31,232 KB
testcase_04 AC 88 ms
35,072 KB
testcase_05 AC 84 ms
36,352 KB
testcase_06 AC 83 ms
12,160 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 4,510 ms
14,592 KB
testcase_13 AC 86 ms
12,032 KB
testcase_14 AC 85 ms
12,288 KB
testcase_15 AC 85 ms
12,160 KB
testcase_16 AC 85 ms
12,288 KB
testcase_17 AC 85 ms
12,160 KB
testcase_18 TLE -
testcase_19 AC 3,670 ms
16,256 KB
testcase_20 AC 2,172 ms
14,208 KB
testcase_21 TLE -
testcase_22 AC 2,824 ms
15,488 KB
testcase_23 AC 86 ms
12,032 KB
testcase_24 TLE -
testcase_25 AC 125 ms
19,456 KB
testcase_26 AC 880 ms
12,928 KB
testcase_27 AC 84 ms
12,288 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)
cnt = 0

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