結果

問題 No.182 新規性の虜
ユーザー nonokai10nonokai10
提出日時 2018-02-26 01:52:56
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 111 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-11-17 14:23:47
合計ジャッジ時間 92,504 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
93,516 KB
testcase_01 AC 71 ms
95,616 KB
testcase_02 AC 71 ms
95,304 KB
testcase_03 AC 70 ms
94,116 KB
testcase_04 AC 70 ms
91,912 KB
testcase_05 AC 70 ms
95,156 KB
testcase_06 AC 73 ms
93,452 KB
testcase_07 AC 69 ms
92,048 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 71 ms
90,484 KB
testcase_14 AC 71 ms
12,160 KB
testcase_15 AC 70 ms
12,032 KB
testcase_16 AC 70 ms
12,032 KB
testcase_17 AC 70 ms
12,032 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 72 ms
12,032 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 71 ms
12,288 KB
evil01.txt TLE -
evil02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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