結果

問題 No.190 Dry Wet Moist
ユーザー maspymaspy
提出日時 2020-03-05 16:44:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,672 KB
最終ジャッジ日時 2024-10-14 01:19:45
合計ジャッジ時間 6,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 166 ms
18,988 KB
testcase_13 AC 209 ms
21,020 KB
testcase_14 AC 162 ms
18,696 KB
testcase_15 AC 221 ms
21,748 KB
testcase_16 AC 284 ms
25,064 KB
testcase_17 AC 57 ms
12,496 KB
testcase_18 AC 139 ms
17,772 KB
testcase_19 AC 281 ms
24,600 KB
testcase_20 AC 191 ms
20,128 KB
testcase_21 AC 46 ms
12,032 KB
testcase_22 AC 350 ms
29,408 KB
testcase_23 AC 334 ms
29,672 KB
testcase_24 AC 348 ms
29,600 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 213 ms
23,264 KB
testcase_28 AC 106 ms
16,628 KB
testcase_29 AC 128 ms
17,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

# %%
N, *A = map(int, read().split())

# %%


def dry(A):
    A = deque(sorted(A))
    ret = 0
    while len(A) >= 2:
        if A[0] + A[-1] < 0:
            ret += 1
            A.popleft()
            A.pop()
        else:
            A.pop()
    return ret


def wet(A):
    return dry([-x for x in A])


def moist(A):
    A = deque(sorted(A))
    ret = 0
    while len(A) >= 2:
        x = A[0] + A[-1]
        if x < 0:
            A.popleft()
        elif x > 0:
            A.pop()
        else:
            A.popleft()
            A.pop()
            ret += 1
    return ret


# %%
print(dry(A), wet(A), moist(A))
0