結果

問題 No.671 1000000007
ユーザー Mcpu3Mcpu3
提出日時 2018-04-15 12:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-06-26 22:51:21
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,852 KB
testcase_01 AC 123 ms
54,072 KB
testcase_02 AC 129 ms
53,936 KB
testcase_03 AC 125 ms
54,184 KB
testcase_04 AC 125 ms
54,260 KB
testcase_05 AC 124 ms
54,060 KB
testcase_06 AC 125 ms
53,876 KB
testcase_07 AC 125 ms
54,168 KB
testcase_08 AC 124 ms
54,044 KB
testcase_09 AC 125 ms
53,884 KB
testcase_10 AC 128 ms
54,000 KB
testcase_11 AC 124 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no671{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long n=stdIn.nextLong();
		int i=0;
		while(n!=0) {
			n=n/10;
			i++;
		}
		int ans;
		if(i==10) ans=0;
		else if(i>10) ans=i-10;
		else ans=10-i;
		System.out.println(ans);
	}
}
0