結果

問題 No.4 おもりと天秤
ユーザー TaK7907TaK7907
提出日時 2017-11-29 02:06:15
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 850 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 111,824 KB
実行使用メモリ 27,200 KB
最終ジャッジ日時 2024-05-05 15:09:28
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
18,944 KB
testcase_01 AC 27 ms
19,328 KB
testcase_02 AC 27 ms
19,328 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 26 ms
19,200 KB
testcase_06 AC 27 ms
19,072 KB
testcase_07 AC 28 ms
19,456 KB
testcase_08 AC 26 ms
19,328 KB
testcase_09 AC 29 ms
19,200 KB
testcase_10 WA -
testcase_11 AC 27 ms
19,584 KB
testcase_12 AC 27 ms
18,944 KB
testcase_13 AC 27 ms
19,456 KB
testcase_14 AC 29 ms
19,200 KB
testcase_15 AC 27 ms
18,944 KB
testcase_16 WA -
testcase_17 AC 27 ms
19,328 KB
testcase_18 AC 27 ms
19,328 KB
testcase_19 AC 27 ms
19,072 KB
testcase_20 AC 27 ms
18,944 KB
testcase_21 AC 26 ms
19,072 KB
testcase_22 AC 27 ms
19,072 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.Linq;

namespace yuki0004 {
    public class Program {
        static internal string Solve(System.IO.TextReader reader) {
            var n = int.Parse( reader.ReadLine() );
            var w = reader.ReadLine().Split().ToList().ConvertAll( int.Parse )
                .OrderByDescending(x=>x)
                .ToList();
            if (w.Sum() % 2 == 1) return "impossible";
            var aim = w.Sum() / 2;
            int subtotal=0;
            for(var i = 0; i != n; ++i) {
                if (subtotal + w[ i ] == aim) return "possible";
                else if (subtotal + w[ i ] < aim) subtotal += w[ i ];
                else continue;
            }
            return "impossible";
        }

        static void Main(string[] args) {
            Console.WriteLine(Solve(System.Console.In));
        }
    }
}
0