結果

問題 No.4 おもりと天秤
ユーザー masayan_kazumasayan_kazu
提出日時 2014-10-19 18:11:58
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 112,120 KB
実行使用メモリ 28,276 KB
最終ジャッジ日時 2024-06-09 16:22:49
合計ジャッジ時間 1,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
25,976 KB
testcase_01 AC 21 ms
24,184 KB
testcase_02 AC 21 ms
25,876 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 22 ms
24,116 KB
testcase_07 WA -
testcase_08 AC 21 ms
24,108 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 AC 21 ms
23,928 KB
testcase_12 AC 21 ms
26,096 KB
testcase_13 AC 20 ms
24,232 KB
testcase_14 AC 20 ms
23,808 KB
testcase_15 AC 20 ms
25,972 KB
testcase_16 WA -
testcase_17 AC 22 ms
24,108 KB
testcase_18 AC 21 ms
23,932 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
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.Linq;
using System.Text;
using System.Threading.Tasks;

namespace omori
{
    class Program
    {
        static void Main(string[] args)
        {
            var str0 = int.Parse(Console.ReadLine());
            var str1 = Console.ReadLine().Split(' ');

            //答えの出現判定
            var hantei = new bool[100 * 100];
            for (int i = 0; i < hantei.Length; i++)
            {
                hantei[i] = false;
            }

            long total = 0;
            foreach (var item in str1)
            {
                total += int.Parse(item);
                hantei[total] =true;
            }

            if (((total % 2) == 0) & (hantei[total/2] == true))
            {
                Console.WriteLine("possible");
            }
            else
            {
                Console.WriteLine("impossible");
            }
        }
    }
}
0