結果

問題 No.451 575
ユーザー papinianuspapinianus
提出日時 2016-12-02 02:20:31
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,008 bytes
コンパイル時間 1,394 ms
コンパイル使用メモリ 112,796 KB
実行使用メモリ 32,956 KB
最終ジャッジ日時 2024-05-09 18:20:26
合計ジャッジ時間 6,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
18,816 KB
testcase_01 AC 31 ms
18,944 KB
testcase_02 AC 31 ms
18,816 KB
testcase_03 AC 30 ms
18,816 KB
testcase_04 AC 31 ms
18,944 KB
testcase_05 AC 34 ms
19,072 KB
testcase_06 AC 42 ms
19,840 KB
testcase_07 AC 90 ms
24,832 KB
testcase_08 AC 31 ms
18,688 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
19,072 KB
testcase_15 AC 34 ms
19,068 KB
testcase_16 AC 45 ms
20,060 KB
testcase_17 AC 91 ms
24,832 KB
testcase_18 AC 91 ms
24,832 KB
testcase_19 AC 70 ms
23,808 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 32 ms
18,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 31 ms
19,072 KB
testcase_26 AC 32 ms
18,816 KB
testcase_27 AC 31 ms
18,944 KB
testcase_28 AC 32 ms
18,816 KB
testcase_29 AC 39 ms
19,820 KB
testcase_30 AC 92 ms
24,960 KB
testcase_31 AC 30 ms
18,944 KB
testcase_32 AC 49 ms
20,452 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 No451
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = Convert.ToInt32(Console.ReadLine());
            var input = ReadLines(n);
            var evens = input.Where((x, i) => i % 2 == 0).ToArray();
            var min = evens.Min();
            if (min < 2) { Console.WriteLine(-1); return; }
            var minidx = getIndex(evens, min) * 2;
            var output = new long[n + 1];
            output[minidx] = 1;
            for (var i = minidx - 1; i > -1; i--)
            {
                if (i % 2 == 1)
                {
                    output[i] = input[i] + output[i + 1];
                }
                else
                {
                    output[i] = input[i] - output[i + 1];
                }
            }
            for (var i = minidx; i < n; i++)
            {
                if (i % 2 == 1)
                {
                    output[i+1] = output[i] - input[i];
                }
                else
                {
                    output[i+1] = input[i] - output[i];
                }
            }
            if (output.Min() < 1 || output.Max() > 1000000000000000000)
            {
                Console.WriteLine(-1);
                return;
            }

            Console.WriteLine(n + 1);
            foreach(var num in output)
            {
                Console.WriteLine(num);
            }
        }

        static long[] ReadLines(int times)
        {
            var ret = new long[times];
            for (var i = 0; i < times; i++)
            {
                ret[i] = Convert.ToInt64(Console.ReadLine());
            }
            return ret;
        }

        static int getIndex(long[] array, long value)
        {
            for (var i = 0; i < array.Length; i++)
            {
                if(array[i] == value)
                {
                    return i;
                }
            }
            return -1;
        }
    }
}
0