結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,240 KB
testcase_01 AC 37 ms
53,424 KB
testcase_02 AC 37 ms
52,116 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
54,424 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 104 ms
94,656 KB
testcase_13 AC 118 ms
104,228 KB
testcase_14 AC 99 ms
94,052 KB
testcase_15 AC 127 ms
107,212 KB
testcase_16 AC 142 ms
110,052 KB
testcase_17 AC 58 ms
70,300 KB
testcase_18 AC 92 ms
88,840 KB
testcase_19 AC 140 ms
109,456 KB
testcase_20 AC 114 ms
100,824 KB
testcase_21 AC 53 ms
66,608 KB
testcase_22 AC 135 ms
108,668 KB
testcase_23 AC 140 ms
110,720 KB
testcase_24 AC 153 ms
110,940 KB
testcase_25 AC 37 ms
52,788 KB
testcase_26 AC 37 ms
53,244 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
A.sort()
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