結果

問題 No.671 1000000007
ユーザー GodNegotoGodNegoto
提出日時 2019-11-27 15:21:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 4,880 ms
コンパイル使用メモリ 74,488 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-11-08 09:38:54
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,152 KB
testcase_01 AC 127 ms
40,888 KB
testcase_02 AC 127 ms
41,324 KB
testcase_03 AC 127 ms
40,996 KB
testcase_04 AC 127 ms
41,116 KB
testcase_05 AC 117 ms
39,936 KB
testcase_06 AC 128 ms
41,224 KB
testcase_07 AC 126 ms
41,068 KB
testcase_08 AC 128 ms
41,148 KB
testcase_09 AC 128 ms
41,240 KB
testcase_10 AC 126 ms
41,040 KB
testcase_11 AC 127 ms
41,060 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