結果

問題 No.671 1000000007
ユーザー GodNegotoGodNegoto
提出日時 2019-11-27 15:21:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 3,070 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-04-25 21:38:28
合計ジャッジ時間 5,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,112 KB
testcase_01 AC 99 ms
52,892 KB
testcase_02 AC 111 ms
54,036 KB
testcase_03 AC 101 ms
52,988 KB
testcase_04 AC 112 ms
53,696 KB
testcase_05 AC 105 ms
53,728 KB
testcase_06 AC 102 ms
53,088 KB
testcase_07 AC 115 ms
53,932 KB
testcase_08 AC 116 ms
54,176 KB
testcase_09 AC 113 ms
54,032 KB
testcase_10 AC 99 ms
52,848 KB
testcase_11 AC 106 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.ArrayList;
import java.util.Scanner;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String N = sc.next();
		System.out.println(Math.abs(N.length() - 10));
	}
}
0