結果

問題 No.791 うし数列
ユーザー GrenacheGrenache
提出日時 2019-04-26 15:15:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 3,613 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-11-24 12:33:22
合計ジャッジ時間 5,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,372 KB
testcase_01 AC 111 ms
52,820 KB
testcase_02 AC 104 ms
52,820 KB
testcase_03 AC 107 ms
53,400 KB
testcase_04 AC 111 ms
52,872 KB
testcase_05 AC 114 ms
54,028 KB
testcase_06 AC 113 ms
53,148 KB
testcase_07 AC 118 ms
53,780 KB
testcase_08 AC 117 ms
53,744 KB
testcase_09 AC 106 ms
52,988 KB
testcase_10 AC 118 ms
54,124 KB
testcase_11 AC 117 ms
53,896 KB
testcase_12 AC 115 ms
54,152 KB
testcase_13 AC 113 ms
53,760 KB
testcase_14 AC 105 ms
52,472 KB
testcase_15 AC 99 ms
52,552 KB
testcase_16 AC 119 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder791 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] n = sc.next().toCharArray();

		if (n[0] != '1' || n.length == 1) {
			pr.println(-1);
			return;
		}
		
		for (int i = 1, size = n.length; i < size; i++) {
			if (n[i] != '3') {
				pr.println(-1);
				return;
			}
		}
		
		pr.println(n.length - 1);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0