結果

問題 No.190 Dry Wet Moist
ユーザー 小指が強い人小指が強い人
提出日時 2016-01-11 21:41:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-06-07 20:45:47
合計ジャッジ時間 5,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 84 ms
12,032 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 84 ms
12,032 KB
testcase_06 AC 83 ms
12,160 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 AC 85 ms
12,288 KB
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 85 ms
12,160 KB
testcase_12 AC 156 ms
19,968 KB
testcase_13 AC 173 ms
21,760 KB
testcase_14 AC 155 ms
19,584 KB
testcase_15 AC 177 ms
23,552 KB
testcase_16 AC 208 ms
25,856 KB
testcase_17 AC 118 ms
13,440 KB
testcase_18 AC 149 ms
18,304 KB
testcase_19 AC 218 ms
25,600 KB
testcase_20 AC 174 ms
21,248 KB
testcase_21 AC 95 ms
12,928 KB
testcase_22 AC 202 ms
27,904 KB
testcase_23 AC 224 ms
26,752 KB
testcase_24 AC 199 ms
27,008 KB
testcase_25 AC 85 ms
12,032 KB
testcase_26 AC 84 ms
12,160 KB
testcase_27 AC 173 ms
21,120 KB
testcase_28 AC 122 ms
16,256 KB
testcase_29 AC 140 ms
17,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i * 2
a = gets.split.map(&:to_i)
a.sort!
i = 0
j = n - 1
dry = 0
while i < j && a[i] < 0 do
    if a[i] + a[j] < 0
        dry += 1
        i += 1
        j -= 1
    else
        j -= 1
    end
end
i = 0
j = n - 1
moist = 0
while i < j && a[i] <= 0 && a[j] >= 0 do
    if -a[i] == a[j]
        moist += 1
        i += 1
        j -= 1
    elsif -a[i] > a[j]
        i += 1
    else
        j -= 1
    end
end
i = 0
j = n - 1
wet = 0
while i < j && a[j] > 0 do
    if a[i] + a[j] > 0
        wet += 1
        i += 1
        j -= 1
    else
        i += 1
    end
end
print dry, " ", wet, " " , moist, "\n"
0