結果
| 問題 |
No.539 インクリメント
|
| コンテスト | |
| ユーザー |
Tsukasa_Type
|
| 提出日時 | 2018-02-26 23:28:00 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 475 ms / 2,000 ms |
| コード長 | 1,373 bytes |
| コンパイル時間 | 2,164 ms |
| コンパイル使用メモリ | 77,860 KB |
| 実行使用メモリ | 58,216 KB |
| 最終ジャッジ日時 | 2024-11-25 01:18:30 |
| 合計ジャッジ時間 | 4,536 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 |
ソースコード
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();
boolean increment = false;;
boolean isFinished;
boolean isFirst;
boolean isSearch;
StringBuilder ans = new StringBuilder();
for (int i=0; i<n; i++) {
char[] ar = sc.nextLine().toCharArray();
isFinished = false;
isFirst = true;
isSearch = 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') {
increment = true;
ar[j] = '0';
isSearch = true;
}
else {
ar[j]++;
increment = false;
isFinished = true;
}
isFirst = false;
}
else if (isFirst==false) {
if (ar[j]=='9') {
ar[j] = '0';
}
else if (ar[j]<'9') {
ar[j]++;
increment = false;
isFinished = true;
}
}
if (j==0 && increment==true) {ans.append("01"); break;}
}
}
else {
if (isSearch==true) {
isFinished = true;
isSearch = false;
if (increment==true) {
ans.append(1);
}
}
}
ans.append(ar[j]);
}
ans.reverse();
out.println(ans);
ans.setLength(0);
}
}
}
Tsukasa_Type