結果

問題 No.341 沈黙の期間
ユーザー shinwisteriashinwisteria
提出日時 2017-04-15 15:49:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 4,191 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-07-18 17:55:23
合計ジャッジ時間 5,978 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,096 KB
testcase_01 AC 113 ms
39,884 KB
testcase_02 AC 124 ms
41,300 KB
testcase_03 AC 124 ms
41,288 KB
testcase_04 AC 124 ms
41,180 KB
testcase_05 AC 115 ms
40,768 KB
testcase_06 AC 123 ms
41,048 KB
testcase_07 AC 111 ms
40,144 KB
testcase_08 AC 123 ms
40,836 KB
testcase_09 AC 112 ms
40,128 KB
testcase_10 AC 126 ms
41,060 KB
testcase_11 AC 125 ms
41,280 KB
testcase_12 AC 125 ms
40,928 KB
testcase_13 AC 125 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Sirent {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.next());
		s.close();
		int a = 0,b = 0;
		String ten = "…";
		while(str.indexOf(ten) != -1){
			if(str.indexOf(ten) == 0){
				b++;
				str.deleteCharAt(0);
			}else{
				a =Math.max(a, b);
				b = 1;
				str.delete(0, str.indexOf(ten)+1);
			}
		}
		a = Math.max(a, b);
		System.out.println(a);

	}

}
0