結果

問題 No.190 Dry Wet Moist
ユーザー Tsuneo YoshiokaTsuneo Yoshioka
提出日時 2015-04-22 00:29:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-06-07 18:41:03
合計ジャッジ時間 5,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,032 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 88 ms
12,288 KB
testcase_06 AC 91 ms
12,288 KB
testcase_07 AC 93 ms
12,288 KB
testcase_08 AC 93 ms
12,160 KB
testcase_09 AC 88 ms
12,032 KB
testcase_10 AC 88 ms
12,288 KB
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 169 ms
20,480 KB
testcase_13 AC 188 ms
23,040 KB
testcase_14 AC 171 ms
20,352 KB
testcase_15 AC 196 ms
24,704 KB
testcase_16 AC 222 ms
27,392 KB
testcase_17 AC 111 ms
13,696 KB
testcase_18 AC 153 ms
18,688 KB
testcase_19 AC 227 ms
27,136 KB
testcase_20 AC 184 ms
22,400 KB
testcase_21 AC 105 ms
12,928 KB
testcase_22 AC 239 ms
29,696 KB
testcase_23 AC 230 ms
28,416 KB
testcase_24 AC 239 ms
28,416 KB
testcase_25 AC 88 ms
12,288 KB
testcase_26 AC 89 ms
12,032 KB
testcase_27 AC 189 ms
22,016 KB
testcase_28 AC 130 ms
16,640 KB
testcase_29 AC 148 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
@as = gets.split.map(&:to_i).sort

def get_dry
    count = 0
    left = 0
    right = @as.length - 1
    while(left<right) do
        if(@as[left] + @as[right] < 0)
            count +=1
            left +=1
            right -=1
        else
            right -=1
        end
    end
    return count
end
def get_wet
    count = 0
    left = 0
    right = @as.length - 1
    while(left<right) do
        if(@as[left] + @as[right] > 0)
            count +=1
            left +=1
            right -=1
        else
            left +=1
        end
    end
    return count
end

def get_moist
    count = 0
    left = 0
    right = @as.length - 1
    while(left<right) do
        if(@as[left] + @as[right] == 0)
            count +=1
            left +=1
            right -=1
        elsif @as[left] + @as[right] <0
            left +=1
        else
            right -=1
        end
    end
    return count
end


dry = [get_dry,N].min
wet = [get_wet,N].min
moist = [get_moist,N].min

puts "#{dry} #{wet} #{moist}"



0