結果

問題 No.182 新規性の虜
ユーザー nonokai10nonokai10
提出日時 2018-02-26 01:53:56
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 119 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-11-17 14:27:20
合計ジャッジ時間 86,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
27,392 KB
testcase_01 AC 90 ms
18,984 KB
testcase_02 AC 91 ms
29,824 KB
testcase_03 AC 92 ms
19,236 KB
testcase_04 AC 92 ms
19,236 KB
testcase_05 AC 91 ms
28,288 KB
testcase_06 AC 91 ms
29,312 KB
testcase_07 AC 90 ms
19,108 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 4,543 ms
28,160 KB
testcase_13 AC 90 ms
30,464 KB
testcase_14 AC 90 ms
30,592 KB
testcase_15 AC 91 ms
12,416 KB
testcase_16 AC 91 ms
12,160 KB
testcase_17 AC 91 ms
12,288 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 93 ms
12,160 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 889 ms
12,544 KB
testcase_27 AC 91 ms
12,160 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
numbers = gets.split.map(&:to_i)
puts numbers.inject(0) { |count, i| numbers.count(i) == 1 ? count += 1 : count }
0