結果

問題 No.341 沈黙の期間
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-05-20 20:11:47
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 348 bytes
コンパイル時間 2,612 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-06-28 14:45:52
合計ジャッジ時間 5,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,580 KB
testcase_01 AC 133 ms
41,136 KB
testcase_02 AC 117 ms
40,300 KB
testcase_03 AC 132 ms
41,276 KB
testcase_04 AC 136 ms
41,120 KB
testcase_05 AC 136 ms
41,532 KB
testcase_06 AC 134 ms
41,300 KB
testcase_07 AC 118 ms
40,144 KB
testcase_08 AC 136 ms
41,224 KB
testcase_09 AC 131 ms
41,292 KB
testcase_10 AC 134 ms
41,116 KB
testcase_11 RE -
testcase_12 AC 131 ms
41,256 KB
testcase_13 RE -
権限があれば一括ダウンロードができます

ソースコード

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.get(0).length());
	}
}
0