結果
問題 | No.539 インクリメント |
ユーザー | takeya_okino |
提出日時 | 2019-10-01 23:18:48 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,658 bytes |
コンパイル時間 | 2,633 ms |
コンパイル使用メモリ | 81,796 KB |
実行使用メモリ | 86,640 KB |
最終ジャッジ日時 | 2024-10-03 05:47:47 |
合計ジャッジ時間 | 7,395 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 179 ms
55,124 KB |
testcase_01 | AC | 433 ms
59,500 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
ソースコード
import java.util.*; import java.math.BigDecimal; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); String line = sc.nextLine(); for(int i = 0; i < T; i++) { String s = sc.nextLine(); String s1 = ""; String s2 = ""; String num = ""; int p = 0; int a = 0; int n11 = 0; int n12 = 0; int n21 = 0; int n22 = 0; int n31 = 0; int n32 = 0; for(int j = s.length() - 1; j >= 0; j--) { String str = String.valueOf(s.charAt(j)); int t = -1; try { t = Integer.parseInt(str); } catch(NumberFormatException e) { } if(t == -1) { if(a == 1) p = 1; if(p == 0) { n32 = s.length(); } else { n21 = j + 1; n12 = j + 1; break; } } else { if(p == 0) { a = 1; n31 = Math.max(n31, j + 1); n22 = Math.max(n22, j + 1); } else { s1 = str + s1; } } } if(n11 < n12) s1 = s.substring(n11, n12); if(n21 < n22) num = s.substring(n21, n22); if(n31 < n32) s2 = s.substring(n31, n32); if(!(num.equals(""))) { BigDecimal d = new BigDecimal(num); d = d.add(new BigDecimal(1)); String ds = d.toString(); int len = ds.length(); for(int j = 0; j < num.length() - len; j++) { ds = "0" + ds; } System.out.println(s1 + ds + s2); } else { System.out.println(s1 + s2); } } } }