結果

問題 No.341 沈黙の期間
ユーザー tsunabittsunabit
提出日時 2019-05-26 21:24:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 48,176 KB
最終ジャッジ日時 2024-09-17 15:23:26
合計ジャッジ時間 5,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
48,176 KB
testcase_01 AC 126 ms
47,924 KB
testcase_02 AC 126 ms
41,308 KB
testcase_03 AC 126 ms
41,540 KB
testcase_04 AC 125 ms
41,580 KB
testcase_05 AC 125 ms
41,136 KB
testcase_06 AC 126 ms
41,292 KB
testcase_07 AC 113 ms
40,216 KB
testcase_08 AC 127 ms
41,464 KB
testcase_09 AC 128 ms
41,396 KB
testcase_10 AC 125 ms
41,456 KB
testcase_11 AC 110 ms
41,104 KB
testcase_12 AC 125 ms
41,188 KB
testcase_13 AC 117 ms
40,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;
import java.util.Arrays;

public class No341 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        String ss = s.next();
        char[] a = ss.toCharArray();
        int max = 0, c = 0;
        for(char b : a) {
        	if('…' == b) {
        		c += 1;
        	}else {
        		max = max < c? c : max;
        		c = 0;
        	}
        }
        max = max < c? c : max;
        System.out.println(max);
    }
}
0