結果

問題 No.932 解法破綻!高橋君
ユーザー Nitish SongaraNitish Songara
提出日時 2020-10-13 20:12:09
言語 Java21
(openjdk 21)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 463 bytes
コンパイル時間 4,641 ms
コンパイル使用メモリ 72,204 KB
実行使用メモリ 67,092 KB
最終ジャッジ日時 2023-09-28 00:16:39
合計ジャッジ時間 6,888 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,376 KB
testcase_01 AC 97 ms
38,852 KB
testcase_02 AC 96 ms
39,296 KB
testcase_03 AC 102 ms
38,724 KB
testcase_04 AC 101 ms
39,272 KB
testcase_05 AC 102 ms
39,028 KB
testcase_06 AC 98 ms
39,088 KB
testcase_07 AC 96 ms
39,196 KB
testcase_08 AC 105 ms
39,468 KB
testcase_09 AC 102 ms
39,412 KB
testcase_10 AC 101 ms
38,952 KB
testcase_11 AC 105 ms
38,932 KB
testcase_12 AC 114 ms
39,232 KB
testcase_13 AC 110 ms
39,064 KB
testcase_14 AC 114 ms
39,660 KB
testcase_15 AC 104 ms
39,456 KB
testcase_16 AC 120 ms
39,044 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

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