結果
問題 | No.341 沈黙の期間 |
ユーザー | sasakki |
提出日時 | 2016-03-10 11:08:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 130 ms / 5,000 ms |
コード長 | 428 bytes |
コンパイル時間 | 2,530 ms |
コンパイル使用メモリ | 74,976 KB |
実行使用メモリ | 54,188 KB |
最終ジャッジ日時 | 2024-09-24 17:28:23 |
合計ジャッジ時間 | 4,516 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,968 KB |
testcase_01 | AC | 126 ms
54,048 KB |
testcase_02 | AC | 130 ms
53,896 KB |
testcase_03 | AC | 129 ms
53,992 KB |
testcase_04 | AC | 128 ms
53,932 KB |
testcase_05 | AC | 127 ms
54,068 KB |
testcase_06 | AC | 128 ms
54,064 KB |
testcase_07 | AC | 127 ms
54,040 KB |
testcase_08 | AC | 127 ms
53,864 KB |
testcase_09 | AC | 127 ms
54,188 KB |
testcase_10 | AC | 128 ms
53,952 KB |
testcase_11 | AC | 125 ms
54,000 KB |
testcase_12 | AC | 130 ms
54,100 KB |
testcase_13 | AC | 127 ms
53,952 KB |
ソースコード
import java.util.Scanner; class main{ public static void main(String args[]){ Scanner scan = new Scanner(System.in); int count = 0; int max = 0; String str = scan.next(); for(int i = 0; i < str.length(); i++){ char ch = str.charAt(i); if(ch == '…'){ count++; } else{ max = Math.max(count, max); count = 0; } } max = Math.max(count, max); System.out.println(max); } }