結果

問題 No.341 沈黙の期間
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-02-14 21:47:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-09-22 06:40:35
合計ジャッジ時間 4,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,796 KB
testcase_01 AC 124 ms
54,184 KB
testcase_02 AC 122 ms
54,160 KB
testcase_03 AC 125 ms
54,072 KB
testcase_04 AC 126 ms
54,024 KB
testcase_05 AC 124 ms
54,092 KB
testcase_06 AC 123 ms
54,348 KB
testcase_07 AC 109 ms
53,004 KB
testcase_08 AC 125 ms
54,024 KB
testcase_09 AC 124 ms
54,036 KB
testcase_10 AC 124 ms
54,252 KB
testcase_11 AC 123 ms
54,284 KB
testcase_12 AC 123 ms
54,076 KB
testcase_13 AC 122 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		String S = sc.next();
		
		char[] charS = S.toCharArray();
		
		int cnt = 0, max = 0;
		
		for(int i = 0; i < S.length(); i++) {
			if(charS[i] == '…') {
				cnt++;
			} else {
				if(cnt > max) {
					max = cnt;
				}
				
				cnt = 0;
			}
		}
		
		if(cnt > max) {
			max = cnt;
		}
		
		System.out.println(max);
	}
}
0