結果

問題 No.2607 Add One Digit
ユーザー Ryoichi YamadaRyoichi Yamada
提出日時 2024-01-19 21:38:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 1,000 ms
コード長 899 bytes
コンパイル時間 3,760 ms
コンパイル使用メモリ 78,288 KB
実行使用メモリ 55,520 KB
最終ジャッジ日時 2024-09-28 04:08:24
合計ジャッジ時間 7,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
55,076 KB
testcase_01 AC 164 ms
55,348 KB
testcase_02 AC 161 ms
54,940 KB
testcase_03 AC 166 ms
55,028 KB
testcase_04 AC 164 ms
55,096 KB
testcase_05 AC 161 ms
55,208 KB
testcase_06 AC 163 ms
55,016 KB
testcase_07 AC 161 ms
55,124 KB
testcase_08 AC 148 ms
54,764 KB
testcase_09 AC 152 ms
54,748 KB
testcase_10 AC 149 ms
54,688 KB
testcase_11 AC 166 ms
55,188 KB
testcase_12 AC 174 ms
55,120 KB
testcase_13 AC 166 ms
55,200 KB
testcase_14 AC 165 ms
55,520 KB
testcase_15 AC 169 ms
54,960 KB
testcase_16 AC 160 ms
55,008 KB
testcase_17 AC 169 ms
55,032 KB
testcase_18 AC 167 ms
54,992 KB
testcase_19 AC 162 ms
54,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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 k = 0; k <= s.length(); k++) {
            String pre;
            String post;
            int start = 0;
            if (k == 0) {
                pre = "";
                post = s;
                start = 1;
            } else if (k == s.length()) {
                pre = s;
                post = "";
            } else {
                pre = s.substring(0, k);
                post = s.substring(k);
            }
            for (int i = start; i <= 9; i++) {
                String numString = pre + i + post;
                set.add(Long.parseLong(numString));
            }
        }
        System.out.println(set.size());
    }
}
0