結果

問題 No.932 解法破綻!高橋君
ユーザー Nitish SongaraNitish Songara
提出日時 2020-10-13 20:12:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 6,250 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 51,532 KB
最終ジャッジ日時 2024-07-20 18:46:14
合計ジャッジ時間 11,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,032 KB
testcase_01 AC 147 ms
41,084 KB
testcase_02 AC 150 ms
41,120 KB
testcase_03 AC 145 ms
41,132 KB
testcase_04 AC 147 ms
40,952 KB
testcase_05 AC 145 ms
41,084 KB
testcase_06 AC 144 ms
41,388 KB
testcase_07 AC 144 ms
41,024 KB
testcase_08 AC 149 ms
41,144 KB
testcase_09 AC 149 ms
40,808 KB
testcase_10 AC 148 ms
41,188 KB
testcase_11 AC 148 ms
41,132 KB
testcase_12 AC 153 ms
41,132 KB
testcase_13 AC 153 ms
41,660 KB
testcase_14 AC 158 ms
41,788 KB
testcase_15 AC 146 ms
40,884 KB
testcase_16 AC 158 ms
41,000 KB
testcase_17 AC 348 ms
51,532 KB
testcase_18 AC 322 ms
51,292 KB
testcase_19 AC 321 ms
50,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class SSd {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String ar[] = sc.nextLine().split(",");
        boolean ans = true;
        for(String x:ar){
            if(!x.equals("AC")){
                ans = false;
                break;
            }
        }
        if(ans)
            System.out.println("Done!");
        else
            System.out.println("Failed...");
    }
}
0