結果

問題 No.190 Dry Wet Moist
ユーザー mkawa2mkawa2
提出日時 2020-01-27 23:26:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,716 KB
最終ジャッジ日時 2024-09-14 16:34:07
合計ジャッジ時間 5,237 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 120 ms
18,736 KB
testcase_13 AC 147 ms
20,784 KB
testcase_14 AC 117 ms
18,576 KB
testcase_15 AC 157 ms
21,608 KB
testcase_16 AC 196 ms
23,780 KB
testcase_17 AC 48 ms
12,284 KB
testcase_18 AC 100 ms
16,444 KB
testcase_19 AC 193 ms
23,392 KB
testcase_20 AC 137 ms
20,128 KB
testcase_21 AC 42 ms
11,520 KB
testcase_22 AC 254 ms
30,492 KB
testcase_23 AC 221 ms
30,716 KB
testcase_24 AC 277 ms
29,336 KB
testcase_25 AC 31 ms
10,496 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 AC 150 ms
23,140 KB
testcase_28 AC 79 ms
16,056 KB
testcase_29 AC 95 ms
17,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))

def main():
    n = II()
    aa = LI()
    aa.sort()

    neg = 0
    i, j = 0, 2 * n - 1
    while i < j:
        if aa[i] + aa[j] < 0:
            neg += 1
            i, j = i + 1, j - 1
        else: j -= 1

    pos = 0
    i, j = 0, 2 * n - 1
    while i < j:
        if aa[i] + aa[j] > 0:
            pos += 1
            i, j = i + 1, j - 1
        else: i += 1

    equ = 0
    i, j = 0, 2 * n - 1
    while i < j:
        if aa[i] + aa[j] == 0:
            equ += 1
            i, j = i + 1, j - 1
        elif aa[i] + aa[j] > 0: j -= 1
        else: i += 1

    print(neg, pos, equ)

main()
0