結果

問題 No.190 Dry Wet Moist
ユーザー noriocnorioc
提出日時 2024-09-03 11:20:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 972 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 119,896 KB
最終ジャッジ日時 2024-09-03 11:20:34
合計ジャッジ時間 5,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,172 KB
testcase_01 AC 42 ms
54,592 KB
testcase_02 AC 42 ms
53,988 KB
testcase_03 AC 44 ms
54,720 KB
testcase_04 AC 44 ms
55,332 KB
testcase_05 AC 43 ms
54,228 KB
testcase_06 AC 42 ms
54,528 KB
testcase_07 WA -
testcase_08 AC 44 ms
56,044 KB
testcase_09 AC 43 ms
55,000 KB
testcase_10 WA -
testcase_11 AC 43 ms
55,580 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 141 ms
119,896 KB
testcase_23 AC 168 ms
110,796 KB
testcase_24 AC 161 ms
108,524 KB
testcase_25 WA -
testcase_26 AC 43 ms
54,280 KB
testcase_27 WA -
testcase_28 AC 91 ms
88,924 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N = int(input())
A = list(map(int, input().split()))

ps = []
ns = []
for a in A:
    if a >= 0:
        ps.append(a)
    else:
        ns.append(a)


ps.sort()
ns.sort()


def positive(ps, ns):
    xs = ns + ps
    lo = 0
    hi = len(xs)-1
    res = 0
    while lo < hi:
        if xs[lo] + xs[hi] > 0:
            res += 1
            lo += 1
            hi -= 1
        else:
            lo += 1

    return res


def negative(ps, ns):
    xs = ns + ps
    lo = 0
    hi = len(xs)-1
    res = 0
    while lo < hi:
        if xs[lo] + xs[hi] < 0:
            res += 1
            lo += 1
            hi -= 1
        else:
            hi -= 1

    return res


def zero(ps, ns):
    freq = Counter(ns)
    res = 0
    for p in ps:
        if p == 0:
            res += 1
        elif freq[-p] > 0:
            res += 1
            freq[-p] -= 1

    return res


n = negative(ps, ns)
p = positive(ps, ns)
z = zero(ps, ns)
print(n, p, z)
0