結果

問題 No.671 1000000007
ユーザー sudo_yumsudo_yum
提出日時 2018-05-24 16:10:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-06-28 17:29:50
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,984 KB
testcase_01 AC 110 ms
53,676 KB
testcase_02 AC 96 ms
52,616 KB
testcase_03 AC 105 ms
53,808 KB
testcase_04 AC 96 ms
52,768 KB
testcase_05 AC 96 ms
52,832 KB
testcase_06 AC 113 ms
53,984 KB
testcase_07 AC 109 ms
53,804 KB
testcase_08 AC 108 ms
54,060 KB
testcase_09 AC 108 ms
53,832 KB
testcase_10 AC 93 ms
52,528 KB
testcase_11 AC 107 ms
53,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{

  public static void main(String[] args) {

    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    System.out.println(Math.abs(s.length()-10));
  }
}
0