結果

問題 No.341 沈黙の期間
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-29 17:18:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 480 bytes
コンパイル時間 3,404 ms
コンパイル使用メモリ 75,488 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-10-07 17:42:05
合計ジャッジ時間 6,137 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,132 KB
testcase_01 AC 127 ms
54,008 KB
testcase_02 AC 126 ms
54,428 KB
testcase_03 AC 127 ms
54,184 KB
testcase_04 AC 126 ms
54,072 KB
testcase_05 AC 126 ms
53,920 KB
testcase_06 AC 124 ms
54,020 KB
testcase_07 AC 124 ms
53,892 KB
testcase_08 AC 124 ms
54,036 KB
testcase_09 AC 125 ms
54,048 KB
testcase_10 AC 129 ms
54,460 KB
testcase_11 AC 125 ms
54,132 KB
testcase_12 AC 127 ms
53,880 KB
testcase_13 AC 114 ms
52,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise32{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String str = sc.next();
    char[] charArray = str.toCharArray();
    int count = 0;
    int max = 0;

    for (int n = 0; n < charArray.length; n++){
      if(charArray[n] == '…'){
          count++;
      }else if (charArray[n] != '…'){
        count = 0;
      }
      max = Math.max(max, count);
    }
    System.out.println(max);
  }
}
0