結果
問題 | No.190 Dry Wet Moist |
ユーザー | tktk_snsn |
提出日時 | 2020-12-29 01:28:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 638 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,240 KB |
実行使用メモリ | 125,936 KB |
最終ジャッジ日時 | 2024-10-04 07:56:59 |
合計ジャッジ時間 | 4,820 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,504 KB |
testcase_01 | AC | 37 ms
53,504 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 36 ms
54,016 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 40 ms
54,912 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | 183 ms
121,984 KB |
testcase_23 | AC | 196 ms
125,936 KB |
testcase_24 | RE | - |
testcase_25 | AC | 37 ms
53,368 KB |
testcase_26 | AC | 38 ms
53,632 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
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) for n in sorted(neg, reverse=True): if p and n + p[-1] < 0: dry += 1 p.pop() wet = 0 p = sorted(pos) for n in sorted(neg): if 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)