結果

問題 No.2607 Add One Digit
ユーザー ks2mks2m
提出日時 2024-01-19 21:50:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 527 bytes
コンパイル時間 4,610 ms
コンパイル使用メモリ 76,792 KB
実行使用メモリ 42,708 KB
最終ジャッジ日時 2024-09-28 04:19:37
合計ジャッジ時間 7,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
42,248 KB
testcase_01 AC 160 ms
42,588 KB
testcase_02 AC 159 ms
42,504 KB
testcase_03 AC 145 ms
42,660 KB
testcase_04 AC 154 ms
42,548 KB
testcase_05 AC 159 ms
42,428 KB
testcase_06 AC 147 ms
42,468 KB
testcase_07 AC 154 ms
42,416 KB
testcase_08 AC 152 ms
42,708 KB
testcase_09 AC 148 ms
42,336 KB
testcase_10 AC 144 ms
42,208 KB
testcase_11 AC 157 ms
42,584 KB
testcase_12 AC 157 ms
42,408 KB
testcase_13 AC 167 ms
42,496 KB
testcase_14 AC 157 ms
42,464 KB
testcase_15 AC 146 ms
42,492 KB
testcase_16 AC 157 ms
42,468 KB
testcase_17 AC 159 ms
42,632 KB
testcase_18 AC 159 ms
42,608 KB
testcase_19 AC 154 ms
42,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		sc.close();

		Set<Long> set = new HashSet<>();
		for (int i = 0; i <= s.length(); i++) {
			for (int j = 0; j <= 9; j++) {
				String t = s.substring(0, i) + j + s.substring(i);
				long v = Long.parseLong(t);
				set.add(v);
			}
		}
		set.remove(Long.parseLong(s));
		System.out.println(set.size());
	}
}
0