結果

問題 No.791 うし数列
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-22 21:53:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-11-25 07:53:07
合計ジャッジ時間 5,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,020 KB
testcase_01 AC 127 ms
54,100 KB
testcase_02 AC 124 ms
54,252 KB
testcase_03 AC 128 ms
54,000 KB
testcase_04 AC 128 ms
54,256 KB
testcase_05 AC 125 ms
54,120 KB
testcase_06 AC 132 ms
53,852 KB
testcase_07 AC 135 ms
54,188 KB
testcase_08 AC 129 ms
54,112 KB
testcase_09 AC 133 ms
53,976 KB
testcase_10 AC 129 ms
53,960 KB
testcase_11 AC 129 ms
54,292 KB
testcase_12 AC 130 ms
54,296 KB
testcase_13 AC 128 ms
53,960 KB
testcase_14 AC 128 ms
54,268 KB
testcase_15 AC 129 ms
54,152 KB
testcase_16 AC 116 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static public void main(String[]args) throws Exception {
		Scanner sc = new Scanner(System.in);
		String n = sc.next();
		printAns(n);
	}

	static void printAns(String s) throws Exception {
		if( isValid(s) ) {
			int ans = s.length() -1;
			System.out.println(ans);
		} else {
			System.out.println(-1);
		}
	}

	static boolean isValid(String s) throws Exception {

		if(s.charAt(0) != '1') return false;

		if(!s.contains("3")) return false;

		for(int i=1; i<s.length(); i++) {
			char c = s.charAt(i);
			if( c != '3') return false;
		}

		return true;
	}
}
0