結果

問題 No.791 うし数列
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-18 23:55:41
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 759 bytes
コンパイル時間 5,415 ms
コンパイル使用メモリ 86,852 KB
実行使用メモリ 45,292 KB
最終ジャッジ日時 2024-12-14 16:38:59
合計ジャッジ時間 7,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,204 KB
testcase_01 AC 120 ms
40,268 KB
testcase_02 AC 125 ms
41,176 KB
testcase_03 AC 124 ms
41,192 KB
testcase_04 AC 120 ms
40,168 KB
testcase_05 AC 113 ms
40,252 KB
testcase_06 WA -
testcase_07 AC 124 ms
41,400 KB
testcase_08 AC 135 ms
41,344 KB
testcase_09 AC 136 ms
41,344 KB
testcase_10 AC 138 ms
41,048 KB
testcase_11 AC 133 ms
41,180 KB
testcase_12 AC 134 ms
41,188 KB
testcase_13 AC 120 ms
41,288 KB
testcase_14 AC 129 ms
41,236 KB
testcase_15 AC 124 ms
41,152 KB
testcase_16 AC 127 ms
41,728 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