結果

問題 No.791 うし数列
ユーザー YamaKasaYamaKasa
提出日時 2019-02-22 21:30:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-05-03 23:53:06
合計ジャッジ時間 4,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,992 KB
testcase_01 AC 112 ms
41,372 KB
testcase_02 AC 113 ms
41,444 KB
testcase_03 AC 112 ms
41,704 KB
testcase_04 AC 116 ms
41,136 KB
testcase_05 AC 118 ms
41,400 KB
testcase_06 AC 111 ms
41,456 KB
testcase_07 AC 113 ms
41,296 KB
testcase_08 AC 111 ms
40,980 KB
testcase_09 AC 98 ms
40,192 KB
testcase_10 AC 103 ms
40,256 KB
testcase_11 AC 115 ms
41,536 KB
testcase_12 AC 101 ms
40,008 KB
testcase_13 AC 113 ms
40,972 KB
testcase_14 AC 106 ms
41,228 KB
testcase_15 AC 103 ms
41,036 KB
testcase_16 AC 104 ms
40,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String N = sc.next();
		sc.close();
		if(N.charAt(0) != '1' || N.length() == 1) {
			System.out.println(-1);
			System.exit(0);
		}
		for(int i = 1; i < N.length(); i++) {
			char c = N.charAt(i);
			if(c != '3') {
				System.out.println(-1);
				System.exit(0);
			}
		}
		System.out.println(N.length() - 1);
	}
}
0