結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー 4A9GN4A9GN
提出日時 2016-07-22 23:25:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 683 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 75,348 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-11-06 09:23:24
合計ジャッジ時間 7,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,044 KB
testcase_01 AC 133 ms
53,856 KB
testcase_02 AC 134 ms
53,740 KB
testcase_03 AC 134 ms
53,980 KB
testcase_04 AC 134 ms
54,176 KB
testcase_05 AC 133 ms
54,020 KB
testcase_06 AC 133 ms
53,984 KB
testcase_07 AC 139 ms
54,524 KB
testcase_08 AC 136 ms
54,048 KB
testcase_09 AC 132 ms
54,112 KB
testcase_10 WA -
testcase_11 AC 131 ms
54,020 KB
testcase_12 AC 120 ms
53,012 KB
testcase_13 AC 132 ms
53,852 KB
testcase_14 AC 133 ms
53,916 KB
testcase_15 AC 132 ms
54,068 KB
testcase_16 WA -
testcase_17 AC 132 ms
53,972 KB
testcase_18 AC 131 ms
53,988 KB
testcase_19 AC 133 ms
53,852 KB
testcase_20 AC 135 ms
53,692 KB
testcase_21 AC 118 ms
53,156 KB
testcase_22 AC 137 ms
53,872 KB
testcase_23 AC 131 ms
54,052 KB
testcase_24 AC 130 ms
53,996 KB
testcase_25 AC 137 ms
53,836 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        ArrayList<Character> al = new ArrayList<Character>();
        String s = sc.next();
        for (char c : s.toCharArray()) al.add(c);
        s = sc.next();
        for (char c : s.toCharArray()) al.add(c);

        int i, c = 0, h = 1, m = 0;
        char f;
        for (i = 0; i < al.size(); i++) {
            f = al.get(i);
            if (f == 'x') {
                h = 0;
                if (m < c) m = c;
                c = 0;
            } else c++;
        }
        System.out.printf("%d\n", m);
    }
}
0