結果
問題 | No.193 筒の数式 |
ユーザー | bluemegane |
提出日時 | 2018-10-02 09:26:51 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 1,129 bytes |
コンパイル時間 | 994 ms |
コンパイル使用メモリ | 110,516 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-10-12 10:02:04 |
合計ジャッジ時間 | 2,243 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
18,944 KB |
testcase_01 | AC | 27 ms
18,432 KB |
testcase_02 | AC | 27 ms
18,688 KB |
testcase_03 | AC | 27 ms
18,944 KB |
testcase_04 | AC | 27 ms
19,072 KB |
testcase_05 | AC | 26 ms
18,816 KB |
testcase_06 | AC | 26 ms
18,560 KB |
testcase_07 | AC | 26 ms
18,816 KB |
testcase_08 | AC | 26 ms
18,816 KB |
testcase_09 | AC | 27 ms
18,688 KB |
testcase_10 | AC | 26 ms
18,688 KB |
testcase_11 | AC | 26 ms
18,816 KB |
testcase_12 | AC | 27 ms
18,688 KB |
testcase_13 | AC | 28 ms
18,688 KB |
testcase_14 | AC | 26 ms
18,560 KB |
testcase_15 | AC | 26 ms
19,072 KB |
testcase_16 | AC | 27 ms
18,816 KB |
testcase_17 | AC | 27 ms
18,560 KB |
testcase_18 | AC | 27 ms
18,944 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Collections.Generic; using System.Linq; using System; public class Hello { public static void Main() { var ans = new List<int>(); var s = Console.ReadLine().Trim(); var sL = s.Length; var t = s; for (int i = 0; i < sL; i++) { if (t[0] != '+' && t[0] != '-' && t[sL - 1] != '+' && t[sL - 1] != '-') ans.Add(getAns(t)); t = t.Substring(1) + t[0]; } Console.WriteLine(ans.Max()); } public static int getAns(string s) { string[] s2 = s.Split('+', '-'); var a = new List<int>(); for (int i = 0; i < s2.Length; i++) a.Add(int.Parse(s2[i])); var b = new List<int>(); for (int i = 0; i < s.Length; i++) if (s[i] == '+') b.Add(0); else if (s[i] == '-') b.Add(1); int ans; if (b[0] == 0) ans = a[0] + a[1]; else ans = a[0] - a[1]; for (int i = 1; i < b.Count(); i++) { if (b[i] == 0) ans += a[i + 1]; else ans -= a[i + 1]; } return ans; } }