結果

問題 No.182 新規性の虜
ユーザー nonokai10nonokai10
提出日時 2018-02-26 01:50:55
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 111 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 95,360 KB
最終ジャッジ日時 2024-11-17 14:18:01
合計ジャッジ時間 93,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
93,228 KB
testcase_01 AC 93 ms
95,360 KB
testcase_02 AC 91 ms
95,260 KB
testcase_03 AC 91 ms
94,220 KB
testcase_04 AC 93 ms
91,784 KB
testcase_05 AC 92 ms
18,976 KB
testcase_06 AC 93 ms
94,064 KB
testcase_07 AC 92 ms
91,948 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 92 ms
19,232 KB
testcase_14 AC 92 ms
90,768 KB
testcase_15 AC 92 ms
11,904 KB
testcase_16 AC 91 ms
12,032 KB
testcase_17 AC 90 ms
12,032 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 91 ms
12,160 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 91 ms
12,160 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