結果

問題 No.791 うし数列
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-22 21:43:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 3,422 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-05-04 00:58:18
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,788 KB
testcase_01 AC 102 ms
53,044 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 113 ms
54,168 KB
testcase_05 WA -
testcase_06 AC 112 ms
53,984 KB
testcase_07 AC 118 ms
54,164 KB
testcase_08 AC 113 ms
54,048 KB
testcase_09 AC 98 ms
53,020 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 117 ms
54,092 KB
testcase_13 AC 109 ms
54,108 KB
testcase_14 AC 97 ms
52,696 KB
testcase_15 AC 102 ms
54,172 KB
testcase_16 AC 113 ms
54,116 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