結果

問題 No.182 新規性の虜
ユーザー maimai
提出日時 2016-01-23 19:07:23
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 109 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-09-21 15:05:22
合計ジャッジ時間 4,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
12,928 KB
testcase_01 AC 97 ms
12,800 KB
testcase_02 AC 96 ms
12,800 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 95 ms
12,928 KB
testcase_14 AC 96 ms
12,800 KB
testcase_15 AC 97 ms
12,672 KB
testcase_16 AC 96 ms
12,928 KB
testcase_17 AC 98 ms
12,928 KB
testcase_18 AC 135 ms
17,280 KB
testcase_19 AC 123 ms
16,000 KB
testcase_20 AC 112 ms
14,848 KB
testcase_21 AC 139 ms
17,920 KB
testcase_22 AC 114 ms
15,488 KB
testcase_23 AC 94 ms
12,800 KB
testcase_24 RE -
testcase_25 AC 141 ms
19,328 KB
testcase_26 RE -
testcase_27 AC 97 ms
12,800 KB
evil01.txt RE -
evil02.txt RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:3: warning: assigned but unused variable - w
Syntax OK

ソースコード

diff #

n=gets.to_i
d=Array.new(100000,0)
w=gets.split(" ").map(&:to_i).each{|i|d[i]+=1}
p d.select!{|i| i==1}.length
0