結果

問題 No.671 1000000007
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-02 23:45:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-06-28 00:25:33
合計ジャッジ時間 4,040 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,076 KB
testcase_01 AC 123 ms
41,004 KB
testcase_02 AC 110 ms
40,140 KB
testcase_03 AC 124 ms
41,192 KB
testcase_04 AC 120 ms
41,300 KB
testcase_05 AC 122 ms
41,376 KB
testcase_06 AC 109 ms
41,284 KB
testcase_07 AC 123 ms
41,000 KB
testcase_08 AC 123 ms
40,856 KB
testcase_09 AC 125 ms
41,276 KB
testcase_10 AC 124 ms
41,292 KB
testcase_11 AC 107 ms
39,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String n = in.next();

        int r = 10;
        System.out.println(Math.abs(r-n.length()));
    }
}
0