結果

問題 No.791 うし数列
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-22 21:43:41
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 3,855 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-11-25 06:44:32
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,836 KB
testcase_01 AC 115 ms
53,736 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 111 ms
53,868 KB
testcase_05 WA -
testcase_06 AC 113 ms
53,644 KB
testcase_07 AC 113 ms
54,072 KB
testcase_08 AC 113 ms
53,928 KB
testcase_09 AC 102 ms
52,496 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 101 ms
52,836 KB
testcase_13 AC 117 ms
53,724 KB
testcase_14 AC 115 ms
53,832 KB
testcase_15 AC 119 ms
53,880 KB
testcase_16 AC 108 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
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 {
		List<Character> list = new ArrayList<>();
		for(int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if(c == '1' || c == '3') {
				//nothing
			} else {
				list.add(c);
			}
		}
		if(list.size() == 0) return true;
		return false;
	}
}
0