結果

問題 No.341 沈黙の期間
ユーザー atkrymatkrym
提出日時 2016-10-19 14:01:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 501 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-11-22 15:07:45
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,380 KB
testcase_01 AC 123 ms
41,212 KB
testcase_02 AC 105 ms
40,212 KB
testcase_03 AC 110 ms
39,736 KB
testcase_04 AC 108 ms
40,000 KB
testcase_05 AC 111 ms
40,252 KB
testcase_06 AC 124 ms
41,344 KB
testcase_07 AC 123 ms
41,168 KB
testcase_08 AC 112 ms
40,032 KB
testcase_09 AC 107 ms
39,936 KB
testcase_10 AC 123 ms
40,956 KB
testcase_11 AC 113 ms
40,112 KB
testcase_12 AC 121 ms
41,060 KB
testcase_13 AC 125 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        int ret = 0;
        int tmp = 0;
        for (int i = 0;i < s.length();i++) {
            if (s.substring(i, i+1).equals("…")) {
                tmp++;
            } else {
                tmp = 0;
            }
            ret = Math.max(ret, tmp);
        }
        System.out.println(ret);
    }
}
0