結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,912 KB
testcase_01 AC 118 ms
53,872 KB
testcase_02 AC 122 ms
54,140 KB
testcase_03 AC 118 ms
53,964 KB
testcase_04 AC 124 ms
54,208 KB
testcase_05 AC 111 ms
52,584 KB
testcase_06 AC 119 ms
54,000 KB
testcase_07 AC 103 ms
52,336 KB
testcase_08 AC 125 ms
54,012 KB
testcase_09 AC 123 ms
54,112 KB
testcase_10 AC 124 ms
54,032 KB
testcase_11 AC 111 ms
52,964 KB
testcase_12 AC 125 ms
53,996 KB
testcase_13 AC 129 ms
53,972 KB
testcase_14 AC 139 ms
53,992 KB
testcase_15 AC 121 ms
53,872 KB
testcase_16 AC 137 ms
53,976 KB
testcase_17 AC 257 ms
61,400 KB
testcase_18 AC 265 ms
61,456 KB
testcase_19 AC 258 ms
61,636 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