結果

問題 No.791 うし数列
ユーザー GodNegotoGodNegoto
提出日時 2019-11-11 16:39:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 3,402 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-09-15 05:16:44
合計ジャッジ時間 6,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,832 KB
testcase_01 AC 124 ms
40,988 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 123 ms
41,032 KB
testcase_05 AC 124 ms
40,780 KB
testcase_06 AC 122 ms
40,772 KB
testcase_07 AC 124 ms
40,700 KB
testcase_08 AC 124 ms
40,880 KB
testcase_09 AC 123 ms
40,780 KB
testcase_10 AC 123 ms
41,168 KB
testcase_11 AC 125 ms
40,752 KB
testcase_12 AC 108 ms
39,972 KB
testcase_13 AC 111 ms
40,244 KB
testcase_14 AC 124 ms
41,020 KB
testcase_15 AC 125 ms
40,752 KB
testcase_16 AC 123 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String N = sc.next();
		char[] c = N.toCharArray();
		int cnt = 0;
		for(int i = 1; i < c.length; i++) {
			if(c[0] == '1' && c[i] == '3') {
				cnt++;
			}
			else {
				System.out.println(-1);
				return;
			}
		}
		System.out.println(cnt);
	}
}
0