結果

問題 No.671 1000000007
ユーザー sudo_yumsudo_yum
提出日時 2018-05-24 16:10:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 71,572 KB
実行使用メモリ 57,948 KB
最終ジャッジ日時 2023-09-11 02:57:55
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,500 KB
testcase_01 AC 118 ms
55,340 KB
testcase_02 AC 116 ms
55,644 KB
testcase_03 AC 118 ms
55,428 KB
testcase_04 AC 117 ms
55,512 KB
testcase_05 AC 118 ms
55,612 KB
testcase_06 AC 119 ms
57,948 KB
testcase_07 AC 119 ms
55,676 KB
testcase_08 AC 118 ms
55,552 KB
testcase_09 AC 118 ms
55,600 KB
testcase_10 AC 119 ms
55,700 KB
testcase_11 AC 118 ms
55,652 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