結果

問題 No.932 解法破綻!高橋君
ユーザー d-yosh
提出日時 2019-12-09 08:17:42
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

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