結果

問題 No.341 沈黙の期間
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-13 00:29:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-09-22 05:10:24
合計ジャッジ時間 4,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,060 KB
testcase_01 AC 127 ms
54,180 KB
testcase_02 AC 125 ms
54,208 KB
testcase_03 AC 125 ms
54,072 KB
testcase_04 AC 127 ms
54,140 KB
testcase_05 AC 125 ms
53,980 KB
testcase_06 AC 125 ms
54,012 KB
testcase_07 AC 126 ms
53,984 KB
testcase_08 AC 127 ms
54,100 KB
testcase_09 AC 125 ms
54,348 KB
testcase_10 AC 125 ms
53,892 KB
testcase_11 AC 125 ms
54,116 KB
testcase_12 AC 125 ms
53,800 KB
testcase_13 AC 126 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static final char dots = '…';
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        String s = in.next();
        int max = 0;
        int len = 0;
        for(int i=0; i<s.length(); i++) {
            char c = s.charAt(i);
            if(c == dots) {
                len++;
                max = Math.max(max, len);
            } else {
                len = 0;
            }
        }
        System.out.println(max);
    }
}
0