結果

問題 No.190 Dry Wet Moist
ユーザー りあんりあん
提出日時 2015-05-15 16:18:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 3,283 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 105,532 KB
実行使用メモリ 40,892 KB
最終ジャッジ日時 2023-09-20 08:08:51
合計ジャッジ時間 7,487 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
19,692 KB
testcase_01 AC 65 ms
23,668 KB
testcase_02 AC 67 ms
23,668 KB
testcase_03 AC 66 ms
21,644 KB
testcase_04 AC 65 ms
23,612 KB
testcase_05 AC 67 ms
21,624 KB
testcase_06 AC 66 ms
21,620 KB
testcase_07 AC 75 ms
24,052 KB
testcase_08 AC 74 ms
22,016 KB
testcase_09 AC 74 ms
23,928 KB
testcase_10 AC 73 ms
23,936 KB
testcase_11 AC 74 ms
21,920 KB
testcase_12 AC 133 ms
27,796 KB
testcase_13 AC 156 ms
35,532 KB
testcase_14 AC 130 ms
29,720 KB
testcase_15 AC 162 ms
35,848 KB
testcase_16 AC 185 ms
39,416 KB
testcase_17 AC 85 ms
22,984 KB
testcase_18 AC 121 ms
29,208 KB
testcase_19 AC 184 ms
37,268 KB
testcase_20 AC 150 ms
32,640 KB
testcase_21 AC 81 ms
22,548 KB
testcase_22 AC 195 ms
40,524 KB
testcase_23 AC 201 ms
40,892 KB
testcase_24 AC 197 ms
39,428 KB
testcase_25 AC 65 ms
23,660 KB
testcase_26 AC 65 ms
21,640 KB
testcase_27 AC 157 ms
37,296 KB
testcase_28 AC 106 ms
25,964 KB
testcase_29 AC 118 ms
27,084 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.IO;
using System.Text;
using System.Numerics;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        static void Main()
        {
            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            var sc = new Scan();
            int n = sc.Int;
            var a = sc.IntArr;
            Array.Sort(a);
            var ans = new int[3];
            int j = a.Length - 1;
            for (int i = 0; ; i++)
            {
                while (a[i] + a[j] >= 0)
                {
                    --j;
                    if (i >= j)
                        break;
                }
                if (i >= j || a[i] >= 0)
                    break;
                if (a[i] + a[j] < 0)
                {
                    ++ans[0];
                    --j;
                }
            }
            j = 0;
            for (int i = a.Length - 1; ; i--)
            {
                while (a[i] + a[j] <= 0)
                {
                    ++j;
                    if (i <= j)
                        break;
                }
                if (i <= j || a[i] <= 0)
                    break;
                if (a[i] + a[j] > 0)
                {
                    ++ans[1];
                    ++j;
                }
            }
            j = a.Length - 1;
            for (int i = 0; ; i++)
            {
                while (a[i] + a[j] > 0)
                {
                    --j;
                    if (i >= j)
                        break;
                }
                if (i >= j || a[i] > 0 || a[j] < 0)
                    break;
                if (a[i] + a[j] == 0)
                {
                    ++ans[2];
                    --j;
                }
            }
            sw.WriteLine(String.Join(" ", ans));
            sw.Flush();
        }
    }
    class Scan
    {
        public int Int { get { return int.Parse(Console.ReadLine().Trim()); } }
        public long Long { get { return long.Parse(Console.ReadLine().Trim()); } }
        public string Str { get { return Console.ReadLine().Trim(); } }
        public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } }
        public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } }
        public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } }
        public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } }
        public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } }
        public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } }
        public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; }
        public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; }
        public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; }
        public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; }
    }
}
0