結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 80 ms
12,288 KB
testcase_06 AC 82 ms
12,288 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 86 ms
12,288 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 86 ms
12,288 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 154 ms
20,736 KB
testcase_13 AC 171 ms
22,912 KB
testcase_14 AC 152 ms
20,352 KB
testcase_15 AC 180 ms
24,832 KB
testcase_16 AC 199 ms
27,520 KB
testcase_17 AC 96 ms
13,696 KB
testcase_18 AC 139 ms
18,944 KB
testcase_19 AC 203 ms
27,136 KB
testcase_20 AC 169 ms
22,272 KB
testcase_21 AC 94 ms
13,056 KB
testcase_22 AC 228 ms
29,568 KB
testcase_23 AC 210 ms
28,416 KB
testcase_24 AC 225 ms
28,544 KB
testcase_25 AC 80 ms
12,288 KB
testcase_26 AC 81 ms
12,288 KB
testcase_27 AC 167 ms
22,144 KB
testcase_28 AC 120 ms
16,512 KB
testcase_29 AC 134 ms
17,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

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
            right -=1
        end
    end
    return count
end
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
            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


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

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



0