結果

問題 No.341 沈黙の期間
ユーザー fal_rndfal_rnd
提出日時 2016-10-28 15:48:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,860 KB
最終ジャッジ日時 2024-11-24 05:10:52
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,860 KB
testcase_01 AC 113 ms
41,364 KB
testcase_02 AC 115 ms
41,488 KB
testcase_03 AC 117 ms
41,292 KB
testcase_04 AC 118 ms
41,144 KB
testcase_05 AC 112 ms
40,792 KB
testcase_06 AC 111 ms
41,256 KB
testcase_07 AC 114 ms
41,564 KB
testcase_08 AC 113 ms
41,008 KB
testcase_09 AC 116 ms
41,216 KB
testcase_10 AC 115 ms
41,020 KB
testcase_11 AC 115 ms
41,044 KB
testcase_12 AC 118 ms
41,632 KB
testcase_13 AC 116 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		String in[] = s.next().split("[^…]+");
		int r=0;
		for(String s:in){
			r = Math.max(r,s.length());
		}
		System.out.println(r);
	}
}
0