結果

問題 No.791 うし数列
ユーザー tentententen
提出日時 2020-12-09 18:47:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 52,956 KB
最終ジャッジ日時 2024-09-19 01:40:29
合計ジャッジ時間 4,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,944 KB
testcase_01 AC 111 ms
40,884 KB
testcase_02 WA -
testcase_03 AC 92 ms
41,268 KB
testcase_04 AC 108 ms
41,292 KB
testcase_05 AC 109 ms
41,280 KB
testcase_06 AC 110 ms
40,860 KB
testcase_07 AC 109 ms
41,468 KB
testcase_08 AC 101 ms
41,008 KB
testcase_09 AC 110 ms
41,240 KB
testcase_10 AC 111 ms
41,344 KB
testcase_11 AC 115 ms
41,176 KB
testcase_12 AC 100 ms
41,348 KB
testcase_13 AC 110 ms
41,340 KB
testcase_14 AC 110 ms
41,032 KB
testcase_15 AC 110 ms
40,924 KB
testcase_16 AC 99 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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