結果

問題 No.932 解法破綻!高橋君
ユーザー tentententen
提出日時 2020-11-12 20:25:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 46,068 KB
最終ジャッジ日時 2024-07-22 19:46:48
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,132 KB
testcase_01 AC 129 ms
41,264 KB
testcase_02 AC 122 ms
41,308 KB
testcase_03 AC 125 ms
41,452 KB
testcase_04 AC 122 ms
41,304 KB
testcase_05 AC 124 ms
40,884 KB
testcase_06 AC 111 ms
39,900 KB
testcase_07 AC 126 ms
41,380 KB
testcase_08 AC 126 ms
41,176 KB
testcase_09 AC 128 ms
41,520 KB
testcase_10 AC 127 ms
41,252 KB
testcase_11 AC 131 ms
41,400 KB
testcase_12 AC 128 ms
41,212 KB
testcase_13 AC 128 ms
41,516 KB
testcase_14 AC 138 ms
41,452 KB
testcase_15 AC 122 ms
41,228 KB
testcase_16 AC 144 ms
41,360 KB
testcase_17 AC 224 ms
44,612 KB
testcase_18 AC 217 ms
46,068 KB
testcase_19 AC 223 ms
45,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        for (char c : sc.next().toCharArray()) {
            if (c != 'A' && c != 'C' && c != ',') {
                System.out.println("Failed...");
                return;
            }
        }
        System.out.println("Done!");
    }
}
0