結果
問題 | No.193 筒の数式 |
ユーザー | kenji_shioya |
提出日時 | 2016-06-22 18:09:55 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 1,000 ms |
コード長 | 1,419 bytes |
コンパイル時間 | 4,344 ms |
コンパイル使用メモリ | 91,260 KB |
実行使用メモリ | 41,276 KB |
最終ジャッジ日時 | 2024-10-11 19:20:24 |
合計ジャッジ時間 | 7,385 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,096 KB |
testcase_01 | AC | 115 ms
40,188 KB |
testcase_02 | AC | 128 ms
40,856 KB |
testcase_03 | AC | 115 ms
39,948 KB |
testcase_04 | AC | 129 ms
40,908 KB |
testcase_05 | AC | 131 ms
41,124 KB |
testcase_06 | AC | 129 ms
41,276 KB |
testcase_07 | AC | 131 ms
41,020 KB |
testcase_08 | AC | 131 ms
40,948 KB |
testcase_09 | AC | 132 ms
41,224 KB |
testcase_10 | AC | 128 ms
41,212 KB |
testcase_11 | AC | 116 ms
40,040 KB |
testcase_12 | AC | 117 ms
40,016 KB |
testcase_13 | AC | 127 ms
40,984 KB |
testcase_14 | AC | 132 ms
41,028 KB |
testcase_15 | AC | 132 ms
40,784 KB |
testcase_16 | AC | 130 ms
41,044 KB |
testcase_17 | AC | 130 ms
41,096 KB |
testcase_18 | AC | 132 ms
41,128 KB |
ソースコード
import java.util.*; public class Exercise111{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); String s = sc.next(); boolean prevIsNum = false; int max = calStr(s); for(int i = 0; i < s.length(); i++){ if(prevIsNum && Character.isDigit(s.charAt(i))){ String f = s.substring(0, i); String l = s.substring(i); String newStr = l + f; int num = calStr(newStr); max = Math.max(max, num); }else{ if(Character.isDigit(s.charAt(i))){ prevIsNum = true; }else{ prevIsNum = false; } } } System.out.println(max); } private static int calStr(String s){ char[] a = s.toCharArray(); int count = 0; for(int i = 0; i < a.length; i++){ if(a[i] == '+' || a[i] == '-'){ count++; } } String[] num = new String[count + 1]; Arrays.fill(num, ""); char[] op = new char[count]; int index = 0; for(int i = 0; i < a.length; i++){ if(Character.isDigit(a[i])){ num[index] += Character.toString(a[i]); }else{ op[index] = a[i]; index++; } } int sum = Integer.parseInt(num[0]); for(int i = 1; i < num.length; i++){ if(op[i - 1] == '+'){ sum += Integer.parseInt(num[i]); }else{ sum -= Integer.parseInt(num[i]); } } return sum; } }