結果
問題 | No.297 カードの数式 |
ユーザー | r_noko |
提出日時 | 2015-11-08 19:09:00 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,476 bytes |
コンパイル時間 | 1,957 ms |
コンパイル使用メモリ | 108,032 KB |
実行使用メモリ | 21,632 KB |
最終ジャッジ日時 | 2024-09-13 14:10:23 |
合計ジャッジ時間 | 3,209 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
21,248 KB |
testcase_01 | AC | 47 ms
21,248 KB |
testcase_02 | AC | 50 ms
21,376 KB |
testcase_03 | AC | 50 ms
21,248 KB |
testcase_04 | AC | 50 ms
21,504 KB |
testcase_05 | AC | 48 ms
20,608 KB |
testcase_06 | WA | - |
testcase_07 | AC | 51 ms
21,248 KB |
testcase_08 | AC | 51 ms
21,120 KB |
testcase_09 | AC | 47 ms
20,352 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 50 ms
21,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 51 ms
21,504 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.
ソースコード
using System;using System.Linq;namespace contest{class Program{static void Main(string[] args){var dm = 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;string ss = "";double a = 0;for (int i = 0; i < g.Count(); i++)ss += g.ToArray()[i];b = a = double.Parse(ss);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(n.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();}}}