結果

問題 No.190 Dry Wet Moist
ユーザー rlangevinrlangevin
提出日時 2023-07-18 12:05:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 108,512 KB
最終ジャッジ日時 2024-09-18 11:27:20
合計ジャッジ時間 4,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,832 KB
testcase_01 AC 38 ms
54,524 KB
testcase_02 AC 37 ms
54,164 KB
testcase_03 AC 38 ms
55,100 KB
testcase_04 AC 40 ms
53,808 KB
testcase_05 AC 40 ms
54,428 KB
testcase_06 AC 42 ms
54,772 KB
testcase_07 AC 52 ms
64,576 KB
testcase_08 AC 47 ms
60,164 KB
testcase_09 AC 44 ms
60,100 KB
testcase_10 AC 42 ms
60,660 KB
testcase_11 AC 42 ms
60,532 KB
testcase_12 AC 124 ms
94,180 KB
testcase_13 AC 140 ms
100,436 KB
testcase_14 AC 124 ms
93,976 KB
testcase_15 AC 149 ms
103,176 KB
testcase_16 AC 176 ms
108,512 KB
testcase_17 AC 79 ms
78,228 KB
testcase_18 AC 111 ms
89,212 KB
testcase_19 AC 166 ms
108,316 KB
testcase_20 AC 138 ms
97,716 KB
testcase_21 AC 77 ms
76,772 KB
testcase_22 AC 147 ms
108,256 KB
testcase_23 AC 160 ms
107,956 KB
testcase_24 AC 156 ms
107,928 KB
testcase_25 AC 39 ms
54,440 KB
testcase_26 AC 41 ms
54,428 KB
testcase_27 AC 134 ms
98,284 KB
testcase_28 AC 93 ms
83,892 KB
testcase_29 AC 100 ms
85,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N = int(input())
A = list(map(int, input().split()))
A.sort()

D = deque(A)
ans = []

cnt = 0
while len(D) >= 2:
    if abs(D[0]) <= abs(D[-1]) and D[-1] >= 0:
        D.pop()
    else:
        if D[0] + D[-1] >= 0:
            break
        D.popleft()
        D.pop()
        cnt += 1
ans.append(cnt)

D = deque(A)
cnt = 0
while len(D) >= 2:
    if abs(D[0]) >= abs(D[-1]) and D[0] <= 0:
        D.popleft()
    else:
        if D[0] + D[-1] <= 0:
            break
        D.popleft()
        D.pop()
        cnt += 1
ans.append(cnt)


D = deque(A)
cnt = 0
while len(D) >= 2:
    if abs(D[0]) < abs(D[-1]):
        D.pop()
    elif abs(D[0]) > abs(D[-1]):
        D.popleft()
    else:
        if D[0] + D[-1] != 0:
            break
        D.popleft()
        D.pop()
        cnt += 1
ans.append(cnt)

print(*ans)
0