結果

問題 No.190 Dry Wet Moist
ユーザー しらっ亭しらっ亭
提出日時 2015-07-16 00:54:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,612 KB
最終ジャッジ日時 2024-07-08 08:07:19
合計ジャッジ時間 4,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,880 KB
testcase_12 AC 110 ms
18,764 KB
testcase_13 AC 127 ms
20,784 KB
testcase_14 AC 103 ms
18,608 KB
testcase_15 AC 145 ms
21,512 KB
testcase_16 AC 172 ms
24,960 KB
testcase_17 AC 43 ms
12,288 KB
testcase_18 AC 93 ms
16,976 KB
testcase_19 AC 170 ms
24,696 KB
testcase_20 AC 123 ms
20,160 KB
testcase_21 AC 37 ms
11,776 KB
testcase_22 AC 144 ms
30,424 KB
testcase_23 AC 201 ms
30,612 KB
testcase_24 AC 149 ms
29,364 KB
testcase_25 AC 25 ms
10,496 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 130 ms
23,172 KB
testcase_28 AC 74 ms
16,420 KB
testcase_29 AC 85 ms
17,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, A):
    A.sort()

    i = 0
    j = len(A) - 1
    d = 0
    while i < j and A[i] <= 0:
        if -A[i] > A[j]:
            d += 1
            i += 1
            j -= 1
        else:
            j -= 1

    i = 0
    j = len(A) - 1
    w = 0
    while i < j and 0 <= A[j]:
        if -A[i] < A[j]:
            w += 1
            i += 1
            j -= 1
        else:
            i += 1

    i = 0
    j = len(A) - 1
    m = 0
    while i < j and A[i] <= 0 <= A[j]:
        s = A[j] + A[i]
        if s == 0:
            m += 1
            i += 1
            j -= 1
        elif s < 0:
            i += 1
        elif s > 0:
            j -= 1

    print(d, w, m)


def main():
    N = int(input())
    A = list(map(int, input().split()))
    solve(N, A)


if __name__ == '__main__':
    main()
0