結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | くれちー |
提出日時 | 2017-07-14 22:57:38 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,638 bytes |
コンパイル時間 | 1,052 ms |
コンパイル使用メモリ | 114,912 KB |
実行使用メモリ | 29,520 KB |
最終ジャッジ日時 | 2024-10-07 23:46:38 |
合計ジャッジ時間 | 3,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 28 ms
19,456 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 28 ms
19,072 KB |
testcase_05 | AC | 28 ms
19,072 KB |
testcase_06 | WA | - |
testcase_07 | AC | 29 ms
19,072 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 29 ms
19,072 KB |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
#pragma warning disable IDE1006 #pragma warning disable IDE0011 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Numerics; using System.Text; using static System.Convert; using static System.Math; using static Extentions; class IO { int idx; string[] line; public void R(params char[] sep) { line = Console.ReadLine().Split(sep); idx = 0; } public string S => line[idx++]; public string[] Ss => line.Skip(idx++).ToArray(); public char C => char.Parse(line[idx++]); public char[] Cs => line.Skip(idx++).Select(char.Parse).ToArray(); public int I => int.Parse(line[idx++]); public int[] Is => line.Skip(idx++).Select(int.Parse).ToArray(); public long L => long.Parse(line[idx++]); public long[] Ls => line.Skip(idx++).Select(long.Parse).ToArray(); public double F => double.Parse(line[idx++]); public double[] Fs => line.Skip(idx++).Select(double.Parse).ToArray(); public decimal D => decimal.Parse(line[idx++]); public decimal[] Ds => line.Skip(idx++).Select(decimal.Parse).ToArray(); public BigInteger B => BigInteger.Parse(line[idx++]); public BigInteger[] Bs => line.Skip(idx++).Select(BigInteger.Parse).ToArray(); public void Write<T>(params T[] xs) { Console.Write(xs.First()); foreach (var x in xs.Skip(1)) Console.Write(" " + x); Console.WriteLine(); } public void Write(params object[] xs) { Console.Write(xs.First()); foreach (var x in xs.Skip(1)) Console.Write(" " + x); Console.WriteLine(); } } static class Extentions { } static class Program { public static void Main() { #if !DEBUG Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }); #endif Solve(new IO()); Console.Out.Flush(); } public static void Solve(IO io) { io.R(); var n = io.I; var a = new int[n]; var b = new int[n]; for (var i = 0; i < n; i++) { io.R(); a[i] = io.I; b[i] = io.I; } var dp = new int[n, 2]; if (a[0] > b[0]) dp[0, 1] = b[0]; else dp[0, 0] = a[0]; for (var i = 1; i < n; i++) { if (dp[i - 1, 0] > dp[i - 1, 1]) { dp[i, 1] = dp[i - 1, 1] + b[i]; dp[i, 0] = dp[i - 1, 0]; } else { dp[i, 0] = dp[i - 1, 0] + a[i]; dp[i, 1] = dp[i - 1, 1]; } } io.Write(Abs(dp[n - 1, 0] - dp[n - 1, 1])); } }