結果
問題 | No.193 筒の数式 |
ユーザー | bluemegane |
提出日時 | 2018-10-02 09:33:05 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 951 bytes |
コンパイル時間 | 841 ms |
コンパイル使用メモリ | 113,548 KB |
実行使用メモリ | 27,144 KB |
最終ジャッジ日時 | 2024-10-12 10:02:06 |
合計ジャッジ時間 | 2,108 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,116 KB |
testcase_01 | AC | 29 ms
25,004 KB |
testcase_02 | AC | 28 ms
24,724 KB |
testcase_03 | AC | 28 ms
25,008 KB |
testcase_04 | AC | 29 ms
26,660 KB |
testcase_05 | AC | 28 ms
27,144 KB |
testcase_06 | AC | 29 ms
24,844 KB |
testcase_07 | AC | 28 ms
24,972 KB |
testcase_08 | AC | 28 ms
23,088 KB |
testcase_09 | AC | 28 ms
25,012 KB |
testcase_10 | AC | 29 ms
26,760 KB |
testcase_11 | AC | 27 ms
24,752 KB |
testcase_12 | AC | 30 ms
27,144 KB |
testcase_13 | AC | 29 ms
24,860 KB |
testcase_14 | AC | 28 ms
26,896 KB |
testcase_15 | AC | 28 ms
24,736 KB |
testcase_16 | AC | 29 ms
24,992 KB |
testcase_17 | AC | 28 ms
25,108 KB |
testcase_18 | AC | 28 ms
24,976 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) { var a = Array.ConvertAll(s.Split('+', '-'), int.Parse); 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); var ans = a[0]; for (int i = 0; i < b.Count(); i++) if (b[i] == 0) ans += a[i + 1]; else ans -= a[i + 1]; return ans; } }