結果

問題 No.341 沈黙の期間
ユーザー ぴろずぴろず
提出日時 2016-02-12 22:22:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-09-22 04:18:47
合計ジャッジ時間 4,421 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,216 KB
testcase_01 AC 123 ms
54,052 KB
testcase_02 AC 122 ms
54,116 KB
testcase_03 AC 122 ms
54,108 KB
testcase_04 AC 126 ms
53,952 KB
testcase_05 AC 123 ms
54,032 KB
testcase_06 AC 125 ms
54,348 KB
testcase_07 AC 125 ms
53,832 KB
testcase_08 AC 125 ms
53,968 KB
testcase_09 AC 127 ms
53,944 KB
testcase_10 AC 125 ms
54,096 KB
testcase_11 AC 123 ms
54,132 KB
testcase_12 AC 124 ms
54,124 KB
testcase_13 AC 122 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no341;

import java.util.Scanner;

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

}
0