結果

問題 No.932 解法破綻!高橋君
ユーザー d-yoshd-yosh
提出日時 2019-12-09 08:17:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 79,880 KB
実行使用メモリ 62,060 KB
最終ジャッジ日時 2024-06-11 19:40:56
合計ジャッジ時間 5,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,016 KB
testcase_01 AC 107 ms
53,792 KB
testcase_02 AC 104 ms
53,172 KB
testcase_03 AC 120 ms
54,320 KB
testcase_04 AC 105 ms
53,056 KB
testcase_05 AC 95 ms
52,660 KB
testcase_06 AC 113 ms
53,920 KB
testcase_07 AC 118 ms
53,944 KB
testcase_08 AC 121 ms
54,116 KB
testcase_09 AC 116 ms
54,172 KB
testcase_10 AC 120 ms
54,164 KB
testcase_11 AC 117 ms
54,228 KB
testcase_12 AC 121 ms
54,176 KB
testcase_13 AC 112 ms
53,108 KB
testcase_14 AC 122 ms
54,032 KB
testcase_15 AC 95 ms
52,852 KB
testcase_16 AC 131 ms
54,124 KB
testcase_17 AC 252 ms
62,060 KB
testcase_18 AC 212 ms
61,840 KB
testcase_19 AC 231 ms
61,948 KB
権限があれば一括ダウンロードができます

ソースコード

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