結果

問題 No.932 解法破綻!高橋君
ユーザー mattyan0502mattyan0502
提出日時 2020-01-05 00:09:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 51,008 KB
最終ジャッジ日時 2024-11-22 21:50:27
合計ジャッジ時間 5,893 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,008 KB
testcase_01 AC 122 ms
41,324 KB
testcase_02 AC 121 ms
41,204 KB
testcase_03 AC 123 ms
41,208 KB
testcase_04 AC 123 ms
41,364 KB
testcase_05 AC 124 ms
41,580 KB
testcase_06 AC 127 ms
41,184 KB
testcase_07 AC 123 ms
41,200 KB
testcase_08 AC 111 ms
40,016 KB
testcase_09 AC 124 ms
40,924 KB
testcase_10 AC 122 ms
41,028 KB
testcase_11 AC 128 ms
41,316 KB
testcase_12 AC 131 ms
40,972 KB
testcase_13 AC 130 ms
41,124 KB
testcase_14 AC 140 ms
41,316 KB
testcase_15 AC 123 ms
41,124 KB
testcase_16 AC 139 ms
41,304 KB
testcase_17 AC 267 ms
50,956 KB
testcase_18 AC 278 ms
51,008 KB
testcase_19 AC 271 ms
50,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        String str = sc.next();
        String S[] = str.split(",");
        int sum = 0;
        for(int i=0;i<S.length;i++)
        {
            if(S[i].equals("AC"))
            {
                sum++;
            }
        }
        if(S.length==sum)
        {
            System.out.println("Done!");
        }
        else
        {
            System.out.println("Failed...");
        }
    }
}
0