結果

問題 No.297 カードの数式
ユーザー r_nokor_noko
提出日時 2015-11-08 18:55:25
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,489 bytes
コンパイル時間 3,218 ms
コンパイル使用メモリ 116,348 KB
実行使用メモリ 31,904 KB
最終ジャッジ日時 2024-09-13 14:10:12
合計ジャッジ時間 6,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
27,568 KB
testcase_01 AC 51 ms
27,184 KB
testcase_02 AC 52 ms
27,448 KB
testcase_03 WA -
testcase_04 AC 52 ms
27,572 KB
testcase_05 AC 49 ms
27,064 KB
testcase_06 WA -
testcase_07 AC 51 ms
27,828 KB
testcase_08 AC 51 ms
27,444 KB
testcase_09 AC 50 ms
28,592 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 51 ms
27,576 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
27,444 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 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.Linq;

namespace contest
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = Int32.Parse(Console.ReadLine());
            string[] input = Console.ReadLine().Split(' ');

            var p = input.Where(x => x == "+").Select(x => x);
            var m = input.Where(x => x == "-").Select(x => x);
            var pm = p.Concat(m);
            var n = input.Where(x => !pm.Contains(x)).OrderByDescending(x => x).Select(x => x);
            var nn = input.Where(x => !pm.Contains(x)).OrderBy(x => x).Select(x => x);

            var g = n.Take(n.Count() - pm.Count()).Select(x => x);
            double b = 0;
            double a = 0;

            for (int i = 0; i < g.Count(); i++)
                a += double.Parse(g.ToArray()[i]) * Math.Pow(10, g.Count() - 1 - i);
            b = a;

            int cnt = g.Count();
            int ncnt = cnt;

            for (int i = 0; i < p.Count(); i++)
            {
                a += double.Parse(n.Skip(cnt++).Select(x => x).ToArray()[0]);
                b += double.Parse(nn.Skip(ncnt++).Select(x => x).ToArray()[0]);

            }

            for (int i = 0; i < m.Count(); i++)
            {
                a -= double.Parse(n.Skip(cnt++).Select(x => x).ToArray()[0]);
                b = double.Parse(n.Skip(ncnt++).Select(x => x).ToArray()[0]) - b;
            }


            Console.WriteLine(a + " " + b);
            Console.ReadLine();
        }
    }
}
0