結果
問題 | No.297 カードの数式 |
ユーザー | 14番 |
提出日時 | 2016-05-15 11:13:32 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,459 bytes |
コンパイル時間 | 1,019 ms |
コンパイル使用メモリ | 115,796 KB |
実行使用メモリ | 28,124 KB |
最終ジャッジ日時 | 2024-10-06 03:16:48 |
合計ジャッジ時間 | 2,740 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
25,828 KB |
testcase_01 | AC | 40 ms
25,600 KB |
testcase_02 | AC | 41 ms
27,668 KB |
testcase_03 | AC | 42 ms
28,048 KB |
testcase_04 | AC | 41 ms
27,732 KB |
testcase_05 | AC | 41 ms
25,644 KB |
testcase_06 | WA | - |
testcase_07 | AC | 40 ms
27,868 KB |
testcase_08 | AC | 43 ms
23,860 KB |
testcase_09 | AC | 43 ms
27,648 KB |
testcase_10 | AC | 43 ms
26,004 KB |
testcase_11 | AC | 41 ms
27,792 KB |
testcase_12 | AC | 44 ms
27,912 KB |
testcase_13 | AC | 42 ms
25,700 KB |
testcase_14 | AC | 43 ms
28,048 KB |
testcase_15 | AC | 41 ms
23,476 KB |
testcase_16 | AC | 41 ms
27,792 KB |
testcase_17 | AC | 41 ms
23,984 KB |
testcase_18 | AC | 42 ms
28,040 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 41 ms
27,924 KB |
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.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int itemCount = int.Parse(Reader.ReadLine()); string[] inpt = Reader.ReadLine().Split(' '); char[] enzansi = inpt.Where(a=>a.Equals("+") || a.Equals("-")).Select(a=>a[0]).OrderBy(a=>a).ToArray(); int[] numList = inpt.Where(a=>(!a.Equals("+")) && (!a.Equals("-"))).Select(a=>int.Parse(a)).OrderByDescending(a=>a).ToArray(); int saidaiKeta = numList.Length - enzansi.Length; List<long> listSub = new List<long>(); long ans1 = 0; listSub.Add(long.Parse(string.Join(string.Empty, numList.Take(saidaiKeta)))); listSub.AddRange(numList.Skip(saidaiKeta).Select(a=>(long)a)); ans1 = listSub[0]; listSub.RemoveAt(0); for(int i=0; i<enzansi.Length; i++) { if(enzansi[i] == '+') { ans1 += listSub[i]; } else { ans1 -= listSub[i]; } } listSub = new List<long>(); long ans2 = 0; enzansi = enzansi.Reverse().ToArray(); listSub.Add(long.Parse(string.Join(string.Empty, numList.Take(saidaiKeta)))); listSub.AddRange(numList.Skip(saidaiKeta).Select(a=>(long)a)); ans2 = listSub.Last(); listSub.RemoveAt(listSub.Count - 1); for(int i=0; i<enzansi.Length; i++) { if(enzansi[i] == '+') { ans2 += listSub[i]; } else { ans2 -= listSub[i]; } } Console.WriteLine(ans1 + " " + ans2); } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 5 1 2 3 - 4 "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }