結果

問題 No.671 1000000007
ユーザー GBGB
提出日時 2018-04-20 11:18:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 50,296 KB
最終ジャッジ日時 2024-06-27 05:02:41
合計ジャッジ時間 3,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,204 KB
testcase_01 AC 58 ms
49,904 KB
testcase_02 AC 54 ms
50,296 KB
testcase_03 AC 55 ms
50,216 KB
testcase_04 AC 58 ms
49,888 KB
testcase_05 AC 56 ms
49,900 KB
testcase_06 AC 56 ms
50,168 KB
testcase_07 AC 57 ms
49,992 KB
testcase_08 AC 57 ms
50,284 KB
testcase_09 AC 55 ms
50,000 KB
testcase_10 AC 55 ms
50,076 KB
testcase_11 AC 53 ms
49,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args) throws IOException{

    int bit=8;
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    long n=Long.parseLong(br.readLine());

    String buf=String.valueOf(n);
    int count=buf.length()-2;
    
    if(bit>=count){
      int result=bit-count;
      System.out.println(result);
    }else{
      int result=count-bit;
      System.out.println(result);
    }
  }
}
0