結果

問題 No.341 沈黙の期間
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-03-01 10:51:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 2,600 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-06-23 11:58:28
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,512 KB
testcase_01 AC 135 ms
41,692 KB
testcase_02 AC 129 ms
41,532 KB
testcase_03 AC 129 ms
41,444 KB
testcase_04 AC 133 ms
41,416 KB
testcase_05 AC 131 ms
41,380 KB
testcase_06 AC 115 ms
40,372 KB
testcase_07 AC 126 ms
41,524 KB
testcase_08 AC 127 ms
41,820 KB
testcase_09 AC 132 ms
41,560 KB
testcase_10 AC 114 ms
40,028 KB
testcase_11 AC 131 ms
41,288 KB
testcase_12 AC 126 ms
41,564 KB
testcase_13 AC 121 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.OptionalInt;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        String s = stdin.nextLine();
        
        OptionalInt ans = Arrays.stream(s.split("[^\\…]+")).mapToInt(String::length).max();
        System.out.println(ans.orElse(0));
    }
}
0