結果

問題 No.539 インクリメント
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 23:04:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 47,336 KB
最終ジャッジ日時 2024-05-03 20:21:32
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,884 KB
testcase_01 AC 385 ms
47,336 KB
testcase_02 AC 396 ms
47,280 KB
testcase_03 AC 387 ms
47,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		sc.nextLine();
		int increase = 0;
		boolean isFinished;
		boolean isFirst;
		boolean isDuringSearch;
		StringBuilder ans = new StringBuilder();

		for (int i=0; i<n; i++) {
			char[] ar = sc.nextLine().toCharArray();
			isFinished = false;
			isFirst = true;
			isDuringSearch = false;
			for (int j=ar.length-1; j>=0; j--) {
				if ('0'<=ar[j] & ar[j]<='9') {
					if (isFinished==false) {
						if (isFirst==true) {
							if (ar[j]=='9') {
								increase = 1;
								ar[j] = '0';
								isDuringSearch = true;
							}
							else {
								ar[j]++;
								increase = 0;
								isFinished = true;
							}
							isFirst = false;
						}
						else if (isFirst==false) {
							if (ar[j]=='9') {
								ar[j] = '0';
							}
							else if (ar[j]<'9') {
								ar[j]++;
								increase = 0;
								isFinished = true;
							}
						}
					}
				}
				else {
					if (isDuringSearch==true) {
						isFinished = true;
						isDuringSearch = false;
						if (increase==1) {
							ans.append(1);
							increase = 0;
						}
					}
				}
				ans.append(ar[j]);
				if (j==0 && increase==1) {
					ans.append(1);
				}
			}
			ans.reverse();
			out.println(ans);
			ans.setLength(0);
		}
	}
}
0