結果

問題 No.341 沈黙の期間
ユーザー tentententen
提出日時 2020-12-07 13:59:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 75,032 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-09-17 13:53:03
合計ジャッジ時間 4,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,256 KB
testcase_01 AC 118 ms
40,996 KB
testcase_02 AC 117 ms
41,472 KB
testcase_03 AC 113 ms
41,176 KB
testcase_04 AC 115 ms
40,784 KB
testcase_05 AC 110 ms
41,344 KB
testcase_06 AC 114 ms
41,088 KB
testcase_07 AC 103 ms
40,988 KB
testcase_08 AC 121 ms
41,092 KB
testcase_09 AC 122 ms
41,088 KB
testcase_10 AC 118 ms
41,064 KB
testcase_11 AC 112 ms
39,916 KB
testcase_12 AC 117 ms
41,400 KB
testcase_13 AC 100 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int max = 0;
        int count = 0;
        for (char c : sc.nextLine().toCharArray()) {
            if (c == '…') {
                count++;
            } else {
                count = 0;
            }
            max = Math.max(max, count);
        }
        System.out.println(max);
    }
}
0