結果

問題 No.190 Dry Wet Moist
ユーザー nebukuro09nebukuro09
提出日時 2016-09-29 11:54:33
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 1,108 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 34,072 KB
最終ジャッジ日時 2024-11-21 10:26:01
合計ジャッジ時間 4,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,820 KB
testcase_01 AC 12 ms
6,912 KB
testcase_02 AC 12 ms
6,820 KB
testcase_03 AC 12 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 12 ms
6,820 KB
testcase_06 AC 12 ms
6,820 KB
testcase_07 AC 15 ms
7,040 KB
testcase_08 AC 14 ms
6,912 KB
testcase_09 AC 13 ms
6,912 KB
testcase_10 AC 13 ms
6,824 KB
testcase_11 AC 13 ms
6,912 KB
testcase_12 AC 197 ms
18,636 KB
testcase_13 AC 247 ms
19,772 KB
testcase_14 AC 192 ms
18,420 KB
testcase_15 AC 262 ms
20,256 KB
testcase_16 AC 327 ms
22,128 KB
testcase_17 AC 52 ms
9,596 KB
testcase_18 AC 163 ms
17,908 KB
testcase_19 AC 326 ms
21,772 KB
testcase_20 AC 228 ms
19,260 KB
testcase_21 AC 38 ms
8,060 KB
testcase_22 AC 219 ms
24,052 KB
testcase_23 AC 437 ms
34,072 KB
testcase_24 AC 214 ms
24,056 KB
testcase_25 WA -
testcase_26 AC 12 ms
6,820 KB
testcase_27 AC 277 ms
20,836 KB
testcase_28 AC 133 ms
17,252 KB
testcase_29 AC 166 ms
17,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = input()
A = sorted(map(int, raw_input().split()))
nega = []
zero = []
posi = []
for a in A:
    if a < 0:
        nega.append(a)
    elif a == 0:
        zero.append(a)
    else:
        posi.append(a)

if len(nega) == 0:
    print 0, len(zero)+max(0, len(posi)-len(zero))/2, len(zero)/2
    exit()
if len(posi) == 0:
    print len(zero)+max(0, len(nega)-len(zero))/2, 0, len(zero)/2
    exit()

nega_n = 0
p1 = 0
p2 = len(posi)-1
while p1 < len(nega) and p2 >= 0:
    if nega[p1]+posi[p2] < 0:
        p1 += 1
        p2 -= 1
        nega_n += 1
    else:
        p2 -= 1
nega_n += min(len(zero), len(nega)-nega_n) + max(0,(len(nega)-nega_n-len(zero))/2)

posi_n = 0
p1 = 0
p2 = len(posi)-1
while p1 < len(nega) and p2 >= 0:
    if nega[p1]+posi[p2] > 0:
        p1 += 1
        p2 -= 1
        posi_n += 1
    else:
        p1 += 1
posi_n += min(len(zero), len(posi)-posi_n) + max(0,(len(posi)-posi_n-len(zero))/2)

nega = map(abs, nega)
c1 = Counter(nega)
c2 = Counter(posi)
moist = len(zero)/2
for k in c1:
    moist += min(c1[k], c2[k])

print nega_n, posi_n, moist
0