結果

問題 No.341 沈黙の期間
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-20 20:12:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 3,070 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-06-28 14:46:03
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,500 KB
testcase_01 AC 137 ms
41,220 KB
testcase_02 AC 134 ms
41,128 KB
testcase_03 AC 138 ms
41,364 KB
testcase_04 AC 136 ms
41,304 KB
testcase_05 AC 133 ms
41,132 KB
testcase_06 AC 134 ms
41,028 KB
testcase_07 AC 133 ms
41,116 KB
testcase_08 AC 139 ms
41,124 KB
testcase_09 AC 123 ms
41,256 KB
testcase_10 AC 122 ms
39,972 KB
testcase_11 AC 138 ms
41,308 KB
testcase_12 AC 133 ms
41,096 KB
testcase_13 AC 136 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.*;
import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		List<String> list = Arrays.asList(s.split("[^…]"));
		list.sort(Comparator.comparingInt(String::length).reversed());
		out.println(list.size()==0?0:list.get(0).length());
	}
}
0