結果

問題 No.190 Dry Wet Moist
ユーザー fmhrfmhr
提出日時 2015-04-23 17:28:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 1,215 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,876 KB
最終ジャッジ日時 2024-07-05 00:30:34
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 134 ms
19,040 KB
testcase_13 AC 160 ms
20,812 KB
testcase_14 AC 126 ms
18,500 KB
testcase_15 AC 174 ms
21,660 KB
testcase_16 AC 225 ms
24,988 KB
testcase_17 AC 49 ms
12,288 KB
testcase_18 AC 110 ms
17,260 KB
testcase_19 AC 211 ms
24,584 KB
testcase_20 AC 149 ms
20,440 KB
testcase_21 AC 44 ms
12,032 KB
testcase_22 AC 292 ms
30,644 KB
testcase_23 AC 265 ms
30,876 KB
testcase_24 AC 274 ms
29,516 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 165 ms
24,328 KB
testcase_28 AC 84 ms
16,436 KB
testcase_29 AC 101 ms
17,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8




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

def dry():
    meterials = list(A)
    i = 0
    j = len(meterials)-1
    count = 0
    while i < j and count < N:
        # print(i, j)
        mixture = meterials[i] + meterials[j]
        if mixture < 0:
            i += 1
            j -= 1
            count += 1
        elif mixture == 0:
            j -= 1
        elif mixture > 0:
            j -= 1
    return count

def wet():
    meterials = list(A)
    i = 0
    j = len(meterials)-1
    count = 0
    while i < j and count < N:
        mixture = meterials[i] + meterials[j]
        if mixture < 0:
            i += 1
        elif mixture == 0:
            i += 1
        elif mixture > 0:
            j -= 1
            i += 1
            count += 1
    return count

def moist():
    meterials = list(A)
    i = 0
    j = len(meterials)-1
    count = 0
    while i < j and count < N:
        mixture = meterials[i] + meterials[j]
        if mixture < 0:
            i += 1
        elif mixture > 0:
            j -= 1
        elif mixture == 0:
            i += 1
            j -= 1
            count += 1
    return count

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