結果

問題 No.341 沈黙の期間
ユーザー mits58mits58
提出日時 2016-07-02 12:12:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 2,098 ms
コンパイル使用メモリ 74,092 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-10-12 02:26:46
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,856 KB
testcase_01 AC 126 ms
53,856 KB
testcase_02 AC 127 ms
54,216 KB
testcase_03 AC 127 ms
53,952 KB
testcase_04 AC 125 ms
54,072 KB
testcase_05 AC 126 ms
54,232 KB
testcase_06 AC 127 ms
53,812 KB
testcase_07 AC 124 ms
54,024 KB
testcase_08 AC 125 ms
54,012 KB
testcase_09 AC 127 ms
53,988 KB
testcase_10 AC 126 ms
54,352 KB
testcase_11 AC 121 ms
54,028 KB
testcase_12 AC 128 ms
53,916 KB
testcase_13 AC 122 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		String str=sc.next();
		int ans=0;
		for(int i=0;i<str.length();i++){
			if(str.charAt(i)=='…'){
				int t=1; i++;
				while(i<str.length() && str.charAt(i)=='…'){
					t++; i++;
				}
				ans=Math.max(ans,t);
			}
		}
		System.out.println(ans);
	}
}
0