結果

問題 No.671 1000000007
ユーザー mosariririmosaririri
提出日時 2018-04-24 22:02:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 3,679 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-06-27 16:24:44
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,012 KB
testcase_01 AC 126 ms
41,056 KB
testcase_02 AC 110 ms
39,948 KB
testcase_03 AC 122 ms
41,236 KB
testcase_04 AC 125 ms
41,144 KB
testcase_05 AC 105 ms
39,656 KB
testcase_06 AC 127 ms
41,108 KB
testcase_07 AC 129 ms
41,096 KB
testcase_08 AC 133 ms
41,100 KB
testcase_09 AC 125 ms
41,088 KB
testcase_10 AC 126 ms
41,240 KB
testcase_11 AC 126 ms
41,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class hogeeee {

	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        int i = s.length()-"1000000007".length();;
        if(i<0) {
        	System.out.println(i*-1);
        }else {
        	System.out.println(i);
        }
	}

}
0