結果

問題 No.932 解法破綻!高橋君
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:17:42
言語 Java21
(openjdk 21)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 349 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 67,108 KB
最終ジャッジ日時 2023-09-02 13:00:16
合計ジャッジ時間 6,121 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,528 KB
testcase_01 AC 122 ms
56,236 KB
testcase_02 AC 122 ms
55,796 KB
testcase_03 AC 124 ms
55,980 KB
testcase_04 AC 122 ms
55,900 KB
testcase_05 AC 121 ms
55,816 KB
testcase_06 AC 122 ms
55,692 KB
testcase_07 AC 122 ms
55,672 KB
testcase_08 AC 122 ms
55,660 KB
testcase_09 AC 123 ms
55,956 KB
testcase_10 AC 126 ms
55,636 KB
testcase_11 AC 124 ms
55,832 KB
testcase_12 AC 127 ms
56,144 KB
testcase_13 AC 129 ms
56,292 KB
testcase_14 AC 137 ms
56,104 KB
testcase_15 AC 125 ms
55,436 KB
testcase_16 AC 136 ms
55,500 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println(
                Arrays.stream(sc.next().split(",")).allMatch(s->"AC".equals(s))?
                        "Done!":
                        "Failed...");
    }
}
0