結果

問題 No.190 Dry Wet Moist
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-29 01:53:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 127,292 KB
最終ジャッジ日時 2024-10-04 08:45:42
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,264 KB
testcase_01 AC 39 ms
54,976 KB
testcase_02 AC 42 ms
53,944 KB
testcase_03 AC 38 ms
54,476 KB
testcase_04 AC 39 ms
54,676 KB
testcase_05 AC 39 ms
55,272 KB
testcase_06 AC 40 ms
54,524 KB
testcase_07 AC 51 ms
64,144 KB
testcase_08 AC 42 ms
55,504 KB
testcase_09 AC 42 ms
55,828 KB
testcase_10 AC 42 ms
55,384 KB
testcase_11 AC 40 ms
55,044 KB
testcase_12 AC 128 ms
97,640 KB
testcase_13 AC 141 ms
104,044 KB
testcase_14 AC 123 ms
96,824 KB
testcase_15 AC 152 ms
99,060 KB
testcase_16 AC 186 ms
108,824 KB
testcase_17 AC 73 ms
78,556 KB
testcase_18 AC 109 ms
92,380 KB
testcase_19 AC 174 ms
107,832 KB
testcase_20 AC 133 ms
101,244 KB
testcase_21 AC 59 ms
73,420 KB
testcase_22 AC 187 ms
121,552 KB
testcase_23 AC 205 ms
127,292 KB
testcase_24 AC 183 ms
110,112 KB
testcase_25 AC 37 ms
53,936 KB
testcase_26 AC 40 ms
55,312 KB
testcase_27 AC 144 ms
103,004 KB
testcase_28 AC 92 ms
85,560 KB
testcase_29 AC 101 ms
90,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())
A = list(map(int, input().split()))

p = []
z = []
n = []
for a in A:
    if a > 0:
        p.append(a)
    elif a == 0:
        z.append(a)
    else:
        n.append(a)

# dry
dry = 0
pos = sorted(p)
neg = sorted(n, reverse=True)
zero = z[:]
while pos and neg:
    if pos[-1] + neg[-1] >= 0:
        pos.pop()
    else:
        pos.pop()
        neg.pop()
        dry += 1
while neg and zero:
    dry += 1
    neg.pop()
    zero.pop()
dry += len(neg) // 2

# wet
wet = 0
pos = sorted(p)
neg = sorted(n, reverse=True)
zero = z[:]
while pos and neg:
    if pos[-1] + neg[-1] <= 0:
        neg.pop()
    else:
        pos.pop()
        neg.pop()
        wet += 1
while pos and zero:
    wet += 1
    pos.pop()
    zero.pop()
wet += len(pos) // 2

# moist
moist = len(z) // 2
cp = Counter(p)
cn = Counter(n)
for k, v in cp.items():
    moist += min(v, cn[-k])

print(dry, wet, moist)
0