結果

問題 No.341 沈黙の期間
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 23:29:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-11-21 12:50:18
合計ジャッジ時間 4,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,824 KB
testcase_01 AC 120 ms
53,880 KB
testcase_02 AC 119 ms
54,176 KB
testcase_03 AC 120 ms
53,908 KB
testcase_04 AC 108 ms
52,664 KB
testcase_05 AC 119 ms
53,948 KB
testcase_06 AC 121 ms
54,036 KB
testcase_07 AC 119 ms
54,140 KB
testcase_08 AC 120 ms
54,088 KB
testcase_09 AC 119 ms
54,072 KB
testcase_10 AC 119 ms
53,992 KB
testcase_11 WA -
testcase_12 AC 109 ms
52,916 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		int leng = 0;
		int max = -1;
		for (int i=0; i<s.length(); i++) {
			char c = s.charAt(i);
			if (c=='…') {
				leng++;
				max = Math.max(max,leng);
			}
			else {
				leng = 0;
			}
		}
		System.out.println(max);
	}
}
0