結果
問題 | No.190 Dry Wet Moist |
ユーザー | tktk_snsn |
提出日時 | 2020-12-29 01:40:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 696 bytes |
コンパイル時間 | 237 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 126,044 KB |
最終ジャッジ日時 | 2024-10-04 08:19:23 |
合計ジャッジ時間 | 4,245 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,504 KB |
testcase_01 | AC | 45 ms
54,144 KB |
testcase_02 | AC | 42 ms
53,504 KB |
testcase_03 | AC | 41 ms
53,760 KB |
testcase_04 | AC | 42 ms
53,376 KB |
testcase_05 | AC | 42 ms
53,888 KB |
testcase_06 | AC | 42 ms
53,632 KB |
testcase_07 | WA | - |
testcase_08 | AC | 44 ms
55,040 KB |
testcase_09 | AC | 42 ms
54,528 KB |
testcase_10 | AC | 43 ms
54,528 KB |
testcase_11 | AC | 44 ms
54,016 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 | 196 ms
121,856 KB |
testcase_23 | AC | 209 ms
126,044 KB |
testcase_24 | AC | 205 ms
110,496 KB |
testcase_25 | AC | 42 ms
53,632 KB |
testcase_26 | AC | 41 ms
53,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 101 ms
86,272 KB |
testcase_29 | AC | 110 ms
90,880 KB |
ソースコード
from collections import Counter N = int(input()) A = list(map(int, input().split())) pos = [] neg = [] for a in A: if a >= 0: pos.append(a) else: neg.append(a) dry = 0 p = sorted(pos, reverse=True) tmp = 0 for n in sorted(neg, reverse=True): if p and n + p[-1] < 0: dry += 1 p.pop() else: tmp += 1 dry += tmp // 2 wet = 0 p = sorted(pos) for n in sorted(neg): if p and n + p[-1] > 0: wet += 1 p.pop() while len(p) >= 2: if p.pop() + p.pop() > 0: wet += 1 moist = 0 p = Counter(pos) n = Counter(neg) for k, v in n.items(): vv = p[-k] moist += min(v, vv) moist += p[0] // 2 print(dry, wet, moist)