結果

問題 No.341 沈黙の期間
ユーザー mitsuomitsuo
提出日時 2016-05-04 12:34:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,256 KB
最終ジャッジ日時 2024-10-05 06:22:07
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,936 KB
testcase_01 AC 112 ms
41,076 KB
testcase_02 AC 126 ms
41,084 KB
testcase_03 AC 118 ms
40,912 KB
testcase_04 AC 127 ms
41,256 KB
testcase_05 AC 130 ms
40,892 KB
testcase_06 AC 130 ms
41,128 KB
testcase_07 AC 131 ms
41,196 KB
testcase_08 AC 115 ms
39,780 KB
testcase_09 AC 131 ms
41,024 KB
testcase_10 AC 117 ms
39,852 KB
testcase_11 AC 128 ms
41,172 KB
testcase_12 AC 124 ms
41,060 KB
testcase_13 AC 121 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String input;
		if (args.length == 0) {
			input = sc.nextLine();
		} else {
			input = args[0];
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(String in) {
		int ans = 0;
		int c = 0;
		for(int i = 0; i < in.length(); i++){
			if(in.substring(i, i + 1).equals("…")){
				c++;
				ans = Math.max(c, ans);
			}else{
				c = 0;
			}
		}
		return ans;
	}
}
0