結果

問題 No.791 うし数列
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-18 23:45:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 698 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 86,036 KB
実行使用メモリ 56,088 KB
最終ジャッジ日時 2024-05-08 12:33:01
合計ジャッジ時間 6,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,192 KB
testcase_01 AC 105 ms
40,004 KB
testcase_02 AC 114 ms
41,196 KB
testcase_03 AC 105 ms
39,944 KB
testcase_04 AC 121 ms
41,280 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 119 ms
41,488 KB
testcase_08 AC 109 ms
40,500 KB
testcase_09 AC 118 ms
41,556 KB
testcase_10 AC 132 ms
41,840 KB
testcase_11 AC 117 ms
41,316 KB
testcase_12 AC 118 ms
41,156 KB
testcase_13 AC 118 ms
41,100 KB
testcase_14 AC 119 ms
41,160 KB
testcase_15 AC 117 ms
41,116 KB
testcase_16 AC 121 ms
42,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// https://yukicoder.me/problems/no/791
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 = Arrays.asList(s.split(""));
    List<String> threeList = list.stream().filter(a -> a.equals("3")).collect(Collectors.toList());
    if (list.size() - 1 == threeList.size() && threeList.size() != 0) {
      System.out.println(threeList.size());
    } else {
      System.out.println(-1);
    }
  }
}
0