結果

問題 No.341 沈黙の期間
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-05 09:29:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 76,484 KB
実行使用メモリ 50,928 KB
最終ジャッジ日時 2024-09-14 08:35:15
合計ジャッジ時間 4,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
50,576 KB
testcase_01 AC 67 ms
50,508 KB
testcase_02 AC 68 ms
50,568 KB
testcase_03 AC 66 ms
50,796 KB
testcase_04 AC 66 ms
50,720 KB
testcase_05 AC 66 ms
50,768 KB
testcase_06 AC 67 ms
50,724 KB
testcase_07 AC 64 ms
50,736 KB
testcase_08 AC 65 ms
50,440 KB
testcase_09 AC 64 ms
50,584 KB
testcase_10 AC 64 ms
50,816 KB
testcase_11 AC 65 ms
50,472 KB
testcase_12 AC 66 ms
50,320 KB
testcase_13 AC 67 ms
50,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String S = reader.readLine();
        int[] table = new int[S.length()];
        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i) == '…') {
                table[i] = 1;
            }
        }
        for (int i = 1; i < S.length(); i++) {
            if(table[i] != 0) {
                table[i] = table[i] + table[i - 1];
            }

        }
        System.out.println(Arrays.stream(table).max().getAsInt());
    }
}
0