結果

問題 No.671 1000000007
ユーザー YOSHIYOSHI
提出日時 2021-06-17 19:42:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 5,123 ms
コンパイル使用メモリ 71,540 KB
実行使用メモリ 49,484 KB
最終ジャッジ日時 2023-09-01 22:53:57
合計ジャッジ時間 5,184 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,392 KB
testcase_01 AC 44 ms
49,076 KB
testcase_02 AC 45 ms
48,932 KB
testcase_03 AC 44 ms
49,172 KB
testcase_04 AC 43 ms
46,844 KB
testcase_05 AC 44 ms
49,188 KB
testcase_06 AC 44 ms
47,296 KB
testcase_07 AC 44 ms
49,016 KB
testcase_08 AC 44 ms
49,056 KB
testcase_09 AC 43 ms
48,976 KB
testcase_10 AC 43 ms
49,020 KB
testcase_11 AC 44 ms
49,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000671_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		System.out.println(Math.abs(br.readLine().length() - "1000000007".length()));
	}
}
0