結果

問題 No.341 沈黙の期間
ユーザー mizunomi32mizunomi32
提出日時 2016-02-28 22:50:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 3,305 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-09-24 12:21:46
合計ジャッジ時間 5,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,088 KB
testcase_01 AC 120 ms
54,336 KB
testcase_02 AC 119 ms
53,960 KB
testcase_03 AC 123 ms
54,004 KB
testcase_04 AC 119 ms
54,048 KB
testcase_05 AC 117 ms
54,100 KB
testcase_06 AC 108 ms
52,896 KB
testcase_07 AC 120 ms
54,468 KB
testcase_08 AC 119 ms
54,136 KB
testcase_09 AC 118 ms
53,800 KB
testcase_10 AC 118 ms
53,832 KB
testcase_11 AC 117 ms
53,820 KB
testcase_12 AC 104 ms
52,844 KB
testcase_13 AC 105 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



import java.util.Scanner;

public class main {
    public static void main(String[] args){
        Scanner sc= new Scanner(System.in);
        String S = sc.next();
        char[] chars = S.toCharArray();
        int lengths =S.length();
        int i=0;
        int count=0;
        int oldcount=0;

        for(;i<lengths;i++){
            if(chars[i]=='…'){
                count++;
            }else{
                count=0;
            }
            if(oldcount<count){
                oldcount=count;
            }

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