結果

問題 No.791 うし数列
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-18 23:57:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 86,536 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-05-08 12:41:56
合計ジャッジ時間 6,655 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,416 KB
testcase_01 AC 116 ms
40,208 KB
testcase_02 AC 128 ms
41,204 KB
testcase_03 AC 118 ms
41,352 KB
testcase_04 AC 131 ms
41,508 KB
testcase_05 AC 120 ms
41,436 KB
testcase_06 AC 120 ms
41,384 KB
testcase_07 AC 133 ms
41,448 KB
testcase_08 AC 136 ms
41,616 KB
testcase_09 AC 131 ms
41,460 KB
testcase_10 AC 132 ms
41,448 KB
testcase_11 AC 136 ms
41,504 KB
testcase_12 AC 131 ms
41,172 KB
testcase_13 AC 131 ms
41,336 KB
testcase_14 AC 132 ms
41,324 KB
testcase_15 AC 117 ms
40,208 KB
testcase_16 AC 129 ms
41,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Collectors;

// https://yukicoder.me/problems/no/791
// エラーの解決の参考:https://zero-config.com/java/list0001.html
public class Ushi791 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    String s = sc.next();

    List<String> list = new LinkedList(Arrays.asList(s.split("")));
    if (!list.get(0).equals("1")) {
      System.out.println(-1);
      return;
    }
    list.remove(0);
    List<String> threeList = list.stream().filter(a -> a.equals("3")).collect(Collectors.toList());
    if (list.size() == threeList.size() && threeList.size() != 0) {
      System.out.println(threeList.size());
    } else {
      System.out.println(-1);
    }
  }
}
0