結果

問題 No.190 Dry Wet Moist
ユーザー 👑 rin204rin204
提出日時 2022-10-17 22:57:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 111,028 KB
最終ジャッジ日時 2024-06-28 12:00:10
合計ジャッジ時間 4,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,516 KB
testcase_01 AC 41 ms
52,560 KB
testcase_02 AC 38 ms
54,280 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
52,564 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 103 ms
94,528 KB
testcase_13 AC 120 ms
104,272 KB
testcase_14 AC 100 ms
94,100 KB
testcase_15 AC 128 ms
107,420 KB
testcase_16 AC 141 ms
109,980 KB
testcase_17 AC 58 ms
69,764 KB
testcase_18 AC 90 ms
89,288 KB
testcase_19 AC 142 ms
109,736 KB
testcase_20 AC 116 ms
100,788 KB
testcase_21 AC 55 ms
66,308 KB
testcase_22 AC 134 ms
108,996 KB
testcase_23 AC 141 ms
110,820 KB
testcase_24 AC 154 ms
111,028 KB
testcase_25 AC 37 ms
53,132 KB
testcase_26 AC 37 ms
52,996 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def f(A):
    A.sort()
    if A[0] >= 0:
        return 0
    r = 2 * n - 1
    cnt = 0
    for l in range(n):        
        while l < r and A[l] + A[r] >= 0:
            r -= 1
        if l == r:
            break
        cnt += 1
        r -= 1
    return cnt

dry = f(A)
wet = f([-a for a in A])
cnt = {}
moi = 0
z = 0
for a in A:
    if a < 0:
        cnt[-a] = cnt.get(-a, 0) + 1
    elif a == 0:
        z += 1
    else:
        if cnt.get(a, 0) >= 1:
            cnt[a] -= 1
            moi += 1
moi += z // 2
print(dry, wet, moi)
0