結果
問題 | No.341 沈黙の期間 |
ユーザー | fjafjafja |
提出日時 | 2017-09-17 22:43:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 55 ms / 5,000 ms |
コード長 | 519 bytes |
コンパイル時間 | 3,353 ms |
コンパイル使用メモリ | 73,312 KB |
実行使用メモリ | 37,092 KB |
最終ジャッジ日時 | 2024-11-08 02:00:41 |
合計ジャッジ時間 | 4,918 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
37,092 KB |
testcase_01 | AC | 53 ms
36,500 KB |
testcase_02 | AC | 52 ms
36,728 KB |
testcase_03 | AC | 54 ms
36,960 KB |
testcase_04 | AC | 54 ms
36,944 KB |
testcase_05 | AC | 53 ms
36,836 KB |
testcase_06 | AC | 53 ms
36,792 KB |
testcase_07 | AC | 53 ms
36,492 KB |
testcase_08 | AC | 54 ms
36,844 KB |
testcase_09 | AC | 54 ms
36,972 KB |
testcase_10 | AC | 53 ms
36,832 KB |
testcase_11 | AC | 53 ms
36,852 KB |
testcase_12 | AC | 54 ms
36,840 KB |
testcase_13 | AC | 54 ms
36,944 KB |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class N341 { public static void main(String[] args)throws IOException { BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String str=br.readLine(); int cnt=0; int max=0; for(int i=0;i<str.length();i++) { if(str.substring(i, i+1).equals("…")) { cnt++; max=(cnt>max)?cnt:max; } else { cnt=0; } } System.out.println(max); } }