結果

問題 No.190 Dry Wet Moist
ユーザー NoNo
提出日時 2015-06-19 18:19:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 2,238 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 106,752 KB
実行使用メモリ 35,712 KB
最終ジャッジ日時 2024-07-07 03:56:20
合計ジャッジ時間 4,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,920 KB
testcase_01 AC 26 ms
18,048 KB
testcase_02 AC 27 ms
17,792 KB
testcase_03 AC 27 ms
17,920 KB
testcase_04 AC 27 ms
18,048 KB
testcase_05 AC 27 ms
18,048 KB
testcase_06 AC 28 ms
18,048 KB
testcase_07 AC 32 ms
18,560 KB
testcase_08 AC 32 ms
18,432 KB
testcase_09 AC 32 ms
18,432 KB
testcase_10 AC 32 ms
18,304 KB
testcase_11 AC 31 ms
18,432 KB
testcase_12 AC 92 ms
25,344 KB
testcase_13 AC 117 ms
32,000 KB
testcase_14 AC 89 ms
25,216 KB
testcase_15 AC 123 ms
32,384 KB
testcase_16 AC 146 ms
33,792 KB
testcase_17 AC 44 ms
19,968 KB
testcase_18 AC 80 ms
24,064 KB
testcase_19 AC 144 ms
33,792 KB
testcase_20 AC 112 ms
31,232 KB
testcase_21 AC 40 ms
19,456 KB
testcase_22 AC 155 ms
34,944 KB
testcase_23 AC 159 ms
35,200 KB
testcase_24 AC 158 ms
35,712 KB
testcase_25 AC 27 ms
17,920 KB
testcase_26 AC 27 ms
17,792 KB
testcase_27 AC 116 ms
31,872 KB
testcase_28 AC 65 ms
22,468 KB
testcase_29 AC 76 ms
23,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace foryuki
{
    class Program
    {
        static int[] n;

        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            var A = ConvertStringArrayToIntArray(Console.ReadLine().Split());
            Array.Sort(A);

            int i = 0;
            int j = 2 * N - 1;
            int dry = 0;
            int wet = 0;
            int moi = 0;

            while (i < j)
            {
                if (A[i] + A[j] < 0)
                {
                    dry++;
                    i++;
                    j--;
                }
                else
                {
                    j--;
                }
            }

            i = 0;
            j = 2 * N - 1;
            while (i < j)
            {
                if (A[i] + A[j] > 0)
                {
                    wet++;
                    i++;
                    j--;
                }
                else
                {
                    i++;
                }
            }

            i = 0;
            j = 2 * N - 1;
            while (i < j)
            {
                if (A[i] + A[j] == 0)
                {
                    moi++;
                    i++;
                    j--;
                }
                else
                {
                    if (Math.Abs(A[i]) > Math.Abs(A[j]))
                    {
                        i++;
                    }
                    else
                    {
                        j--;
                    }
                }
            }

            Console.WriteLine("{0} {1} {2}",dry,wet,moi);
        }

        //-------------------------------------------------------------

        static int[] ConvertStringArrayToIntArray(string[] array)
        {
            return Array.ConvertAll(array, str => int.Parse(str));
        }

        static List<int> ConvertStringArrayToIntList(string[] str)
        {
            var list = new List<int>();
            foreach (var c in str)
            {
                list.Add(int.Parse(c));
            }
            return list;
        }
    }
}
0