結果

問題 No.2607 Add One Digit
ユーザー fujitafujita
提出日時 2024-03-22 16:30:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 332 bytes
コンパイル時間 3,682 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 41,980 KB
最終ジャッジ日時 2024-09-30 10:37:00
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,980 KB
testcase_01 AC 116 ms
41,136 KB
testcase_02 AC 117 ms
41,344 KB
testcase_03 AC 116 ms
40,804 KB
testcase_04 AC 114 ms
41,188 KB
testcase_05 AC 115 ms
41,052 KB
testcase_06 AC 116 ms
40,868 KB
testcase_07 AC 115 ms
41,208 KB
testcase_08 AC 117 ms
41,128 KB
testcase_09 AC 120 ms
41,016 KB
testcase_10 AC 105 ms
41,376 KB
testcase_11 AC 123 ms
41,484 KB
testcase_12 AC 124 ms
41,072 KB
testcase_13 AC 121 ms
40,940 KB
testcase_14 AC 126 ms
41,116 KB
testcase_15 AC 124 ms
41,052 KB
testcase_16 AC 126 ms
41,184 KB
testcase_17 AC 115 ms
41,136 KB
testcase_18 AC 118 ms
40,960 KB
testcase_19 AC 118 ms
40,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        char[] inputs = sc.next().toCharArray();
        int length = inputs.length;
        System.out.println(9 * (length + 1));
    }
}
0