結果
問題 | No.341 沈黙の期間 |
ユーザー | boobright |
提出日時 | 2016-03-19 09:05:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 585 bytes |
コンパイル時間 | 2,191 ms |
コンパイル使用メモリ | 74,532 KB |
実行使用メモリ | 50,392 KB |
最終ジャッジ日時 | 2024-10-01 09:13:07 |
合計ジャッジ時間 | 3,343 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
49,860 KB |
testcase_01 | AC | 53 ms
49,832 KB |
testcase_02 | AC | 54 ms
49,812 KB |
testcase_03 | AC | 55 ms
50,084 KB |
testcase_04 | AC | 54 ms
50,220 KB |
testcase_05 | AC | 54 ms
50,328 KB |
testcase_06 | AC | 54 ms
49,940 KB |
testcase_07 | AC | 53 ms
49,972 KB |
testcase_08 | AC | 53 ms
50,088 KB |
testcase_09 | AC | 53 ms
49,884 KB |
testcase_10 | AC | 53 ms
50,024 KB |
testcase_11 | AC | 53 ms
49,884 KB |
testcase_12 | AC | 52 ms
50,392 KB |
testcase_13 | AC | 53 ms
50,136 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String args[] ) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String line = br.readLine(); int max = 0; boolean ten = false; int cnt = 0; for (int i = 0; i <= line.length(); i++) { if (i != line.length() && line.charAt(i) == '…') { ten = true; cnt++; } else { if (ten) { if (max < cnt) { max = cnt; } cnt = 0; ten = false; } } } System.out.println(max); } }