結果

問題 No.341 沈黙の期間
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-21 19:50:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 492 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-10-02 10:58:26
合計ジャッジ時間 4,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,396 KB
testcase_01 AC 127 ms
40,960 KB
testcase_02 AC 128 ms
40,780 KB
testcase_03 AC 127 ms
40,932 KB
testcase_04 AC 125 ms
41,056 KB
testcase_05 AC 125 ms
41,120 KB
testcase_06 AC 125 ms
41,152 KB
testcase_07 AC 126 ms
40,916 KB
testcase_08 AC 125 ms
41,044 KB
testcase_09 AC 111 ms
40,816 KB
testcase_10 AC 127 ms
40,940 KB
testcase_11 AC 125 ms
41,240 KB
testcase_12 AC 127 ms
41,168 KB
testcase_13 AC 128 ms
40,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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