結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,956 KB
testcase_01 AC 118 ms
40,948 KB
testcase_02 AC 119 ms
41,064 KB
testcase_03 AC 116 ms
41,284 KB
testcase_04 AC 113 ms
41,164 KB
testcase_05 AC 114 ms
41,228 KB
testcase_06 WA -
testcase_07 AC 115 ms
41,120 KB
testcase_08 AC 112 ms
41,240 KB
testcase_09 AC 119 ms
41,412 KB
testcase_10 AC 119 ms
41,340 KB
testcase_11 AC 121 ms
41,476 KB
testcase_12 AC 110 ms
40,472 KB
testcase_13 AC 119 ms
41,464 KB
testcase_14 AC 104 ms
40,276 KB
testcase_15 AC 100 ms
40,008 KB
testcase_16 AC 118 ms
41,260 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
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("")));
    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