結果
問題 | No.193 筒の数式 |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-23 07:11:18 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,302 bytes |
コンパイル時間 | 2,286 ms |
コンパイル使用メモリ | 79,736 KB |
実行使用メモリ | 41,556 KB |
最終ジャッジ日時 | 2024-11-27 09:47:23 |
合計ジャッジ時間 | 4,967 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
41,028 KB |
testcase_01 | AC | 116 ms
41,192 KB |
testcase_02 | AC | 115 ms
40,872 KB |
testcase_03 | AC | 113 ms
40,900 KB |
testcase_04 | AC | 115 ms
41,020 KB |
testcase_05 | AC | 118 ms
41,556 KB |
testcase_06 | AC | 121 ms
40,896 KB |
testcase_07 | WA | - |
testcase_08 | AC | 118 ms
41,284 KB |
testcase_09 | AC | 118 ms
41,340 KB |
testcase_10 | AC | 117 ms
41,156 KB |
testcase_11 | AC | 116 ms
40,724 KB |
testcase_12 | AC | 118 ms
41,192 KB |
testcase_13 | AC | 118 ms
41,076 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.next(); String [] arr = S.split(""); int L = S.length(); int max=0; for(int j=0; j<L; j++){ String t = ""; for(int i=0; i<L; i++){ t+=arr[(i+j)%L]; } if(t.charAt(0)>='0' && t.charAt(0)<='9' && t.charAt(L-1)>='0' && t.charAt(L-1)<='9'){ int z = cal(t); max=Math.max(max,z); } } System.out.println(max); } static int cal(String S){ String [] integer = S.split("[+-]"); int a = S.indexOf("+"); if(a==-1){a=10;} int b = S.indexOf("-"); if(b==-1){b=10;} int m = Math.min(a,b); S=S.substring(m); String [] sign = S.split("[0-9]"); int N = integer.length; int [] z = new int [N]; for(int i=0; i<N; i++){ z[i]=Integer.parseInt(integer[i]); } int r = z[0]; for(int i=0; i<N-1; i++){ if( "+".equals(sign[i]) ){ r+=z[i+1]; }else if( "-".equals(sign[i]) ){ r-=z[i+1]; } } return r; } }