結果
問題 | No.791 うし数列 |
ユーザー | Yosuke Yamaguchi |
提出日時 | 2021-01-18 23:45:15 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 698 bytes |
コンパイル時間 | 4,014 ms |
コンパイル使用メモリ | 85,808 KB |
実行使用メモリ | 56,460 KB |
最終ジャッジ日時 | 2024-12-14 16:26:53 |
合計ジャッジ時間 | 7,144 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
41,136 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 137 ms
41,484 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 136 ms
41,192 KB |
testcase_08 | AC | 137 ms
41,272 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 136 ms
41,420 KB |
testcase_13 | AC | 137 ms
41,476 KB |
testcase_14 | AC | 123 ms
41,240 KB |
testcase_15 | AC | 134 ms
41,168 KB |
testcase_16 | AC | 137 ms
41,224 KB |
ソースコード
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); } } }