結果

問題 No.341 沈黙の期間
ユーザー かにかに
提出日時 2016-02-12 22:24:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 405 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-09-22 04:20:28
合計ジャッジ時間 4,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,008 KB
testcase_01 AC 124 ms
54,412 KB
testcase_02 AC 125 ms
54,008 KB
testcase_03 AC 127 ms
54,076 KB
testcase_04 AC 126 ms
54,168 KB
testcase_05 AC 125 ms
54,236 KB
testcase_06 AC 124 ms
54,160 KB
testcase_07 AC 126 ms
54,136 KB
testcase_08 AC 125 ms
54,156 KB
testcase_09 AC 126 ms
54,160 KB
testcase_10 AC 129 ms
54,024 KB
testcase_11 AC 125 ms
53,936 KB
testcase_12 AC 123 ms
54,156 KB
testcase_13 AC 125 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String s = sc.nextLine();
		int l = 0;
		int maxi = -1;
		for(int i = 0;i < s.length();i++){
				if(s.charAt(i) == '…'){
					l++;
				}else{
					if(maxi < l){
						maxi = l;
					}
					l = 0;
				}
		}
		if(maxi < l){
			maxi = l;
		}
		System.out.println(maxi);
	}
}
	
0