結果

問題 No.4 おもりと天秤
ユーザー stady0shstady0sh
提出日時 2017-06-08 13:08:42
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,142 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 110,792 KB
実行使用メモリ 29,364 KB
最終ジャッジ日時 2024-09-22 13:27:40
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
27,296 KB
testcase_01 AC 29 ms
27,148 KB
testcase_02 AC 32 ms
25,132 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 32 ms
25,260 KB
testcase_06 AC 32 ms
27,316 KB
testcase_07 AC 32 ms
27,328 KB
testcase_08 AC 29 ms
27,172 KB
testcase_09 AC 32 ms
27,332 KB
testcase_10 AC 31 ms
25,148 KB
testcase_11 AC 31 ms
25,516 KB
testcase_12 AC 32 ms
25,516 KB
testcase_13 AC 31 ms
25,260 KB
testcase_14 AC 31 ms
25,552 KB
testcase_15 AC 31 ms
25,264 KB
testcase_16 AC 31 ms
27,556 KB
testcase_17 WA -
testcase_18 AC 32 ms
27,432 KB
testcase_19 AC 31 ms
25,272 KB
testcase_20 AC 31 ms
23,484 KB
testcase_21 AC 31 ms
25,264 KB
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace YukiCoder_Cs
{
    class Program
    {
        public static void Main()
        {
            int N = int.Parse(Console.ReadLine());
            int[] list = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
            
            string ans = "possible";
            if (list.Sum()% 2 != 0)
            {
                ans = "impossible";
            }
            else
            {
                int a = 0;
                int b = 0;
                Array.Sort(list);
                Array.Reverse(list);
                foreach (var item in list)
                {
                    if (a > b)
                    {
                        b += item;
                    }
                    else
                    {
                        a += item;
                    }
                }

                if (a != b)
                {
                    ans = "impossible";
                }
            }
            Console.WriteLine(ans);
        }
    }
}
0