結果
問題 | No.193 筒の数式 |
ユーザー | ki_ki33 |
提出日時 | 2015-04-26 22:40:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,349 bytes |
コンパイル時間 | 2,483 ms |
コンパイル使用メモリ | 82,916 KB |
実行使用メモリ | 54,484 KB |
最終ジャッジ日時 | 2024-07-05 03:07:09 |
合計ジャッジ時間 | 5,834 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
54,136 KB |
testcase_01 | AC | 120 ms
54,100 KB |
testcase_02 | AC | 119 ms
53,800 KB |
testcase_03 | AC | 121 ms
54,084 KB |
testcase_04 | AC | 124 ms
53,976 KB |
testcase_05 | AC | 120 ms
54,224 KB |
testcase_06 | AC | 107 ms
52,752 KB |
testcase_07 | AC | 126 ms
54,088 KB |
testcase_08 | AC | 123 ms
53,980 KB |
testcase_09 | AC | 121 ms
54,312 KB |
testcase_10 | AC | 124 ms
53,984 KB |
testcase_11 | AC | 125 ms
54,248 KB |
testcase_12 | AC | 127 ms
54,176 KB |
testcase_13 | AC | 129 ms
53,812 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
import java.awt.Point; import java.awt.Rectangle; import java.awt.geom.Rectangle2D; import java.io.BufferedInputStream; import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; import java.util.*; import java.util.Map.Entry; import java.util.concurrent.ConcurrentSkipListSet; public class Main { public static final int C = 1000000007; static final int CY = 1000000000; public void calc() { StringBuilder sb = new StringBuilder(); BufferedInputStream bs = new BufferedInputStream(System.in); Scanner sc = new Scanner(bs); String s = sc.next(); int ans = 0; //double ans = 0.0; for (int i=0; i < s.length(); i++) { String ns = ""; ns += s.substring(i); ns += s.substring(0, i); ans = Math.max(ans, msd(ns)); } System.out.println(ans); } int msd(String s) { if (s.endsWith("+") || s.endsWith("-") || s.startsWith("+") || s.startsWith("-")) { return -1; } int ret = 0; String[] ss = s.split("\\+"); for (String str: ss) { int num = 0; String[] sst = str.split("-"); for (int i=0; i < sst.length;i++) { if (i==0) { num += Integer.parseInt(sst[i]); }else { num -= Integer.parseInt(sst[i]); } } ret += num; } return ret; } public static void main(String[] args) { Main main = new Main(); main.calc(); } }