結果

問題 No.932 解法破綻!高橋君
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-29 21:47:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 816 bytes
コンパイル時間 2,710 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-11-20 21:48:49
合計ジャッジ時間 5,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
52,052 KB
testcase_01 AC 132 ms
52,108 KB
testcase_02 AC 131 ms
51,872 KB
testcase_03 AC 132 ms
52,296 KB
testcase_04 AC 129 ms
52,052 KB
testcase_05 AC 130 ms
51,888 KB
testcase_06 AC 129 ms
52,136 KB
testcase_07 AC 127 ms
52,300 KB
testcase_08 AC 128 ms
51,696 KB
testcase_09 AC 130 ms
52,176 KB
testcase_10 AC 133 ms
53,952 KB
testcase_11 AC 134 ms
54,216 KB
testcase_12 AC 136 ms
52,176 KB
testcase_13 AC 135 ms
52,132 KB
testcase_14 AC 145 ms
52,184 KB
testcase_15 AC 133 ms
51,932 KB
testcase_16 AC 142 ms
52,212 KB
testcase_17 AC 229 ms
53,908 KB
testcase_18 AC 220 ms
53,932 KB
testcase_19 AC 227 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String args[]){
        Scanner stdIn = new Scanner(System.in);
        
        //int a = stdIn.nextInt();
        //int b = stdIn.nextInt();
        //int num[] = new int[3];
        String s = stdIn.next();
        char c[] = s.toCharArray();
        //int sum = 0;
        boolean flag = true;
        
        for(int i = 0; i < s.length(); i++){
            if(c[i] == 'A' || c[i] == 'C' || c[i] == ','){
                
            }else{
                flag = false;
                break;
            }
        }
        
        if(flag){
            System.out.println("Done!");
        }else{
            System.out.println("Failed...");
        }
        
        //System.out.println();
        //System.out.print();
    }
}
0