結果

問題 No.341 沈黙の期間
ユーザー yagi2yagi2
提出日時 2017-04-20 12:48:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 4,489 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-07-19 20:39:26
合計ジャッジ時間 5,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,288 KB
testcase_01 AC 130 ms
41,300 KB
testcase_02 AC 130 ms
41,580 KB
testcase_03 AC 133 ms
41,184 KB
testcase_04 AC 132 ms
41,208 KB
testcase_05 AC 134 ms
41,336 KB
testcase_06 AC 132 ms
41,288 KB
testcase_07 AC 134 ms
41,540 KB
testcase_08 AC 130 ms
41,280 KB
testcase_09 AC 129 ms
41,568 KB
testcase_10 AC 131 ms
41,276 KB
testcase_11 WA -
testcase_12 AC 133 ms
41,568 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();

        int max = -1;

        for (int i = 0; i < S.length(); i++) {
            if (S.charAt(i) == '…') {
                int tmp = 1;
                for (int j = i + 1; j < S.length(); j++) {
                    if (S.charAt(j) != '…') break;
                    tmp++;
                }
                if (max < tmp) max = tmp;
            }
        }

        System.out.println(max);
    }
}
0