結果
問題 | No.341 沈黙の期間 |
ユーザー | sasakki |
提出日時 | 2016-03-09 21:49:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 487 bytes |
コンパイル時間 | 2,666 ms |
コンパイル使用メモリ | 73,960 KB |
実行使用メモリ | 54,316 KB |
最終ジャッジ日時 | 2024-09-24 17:05:11 |
合計ジャッジ時間 | 4,604 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
54,156 KB |
testcase_01 | AC | 109 ms
53,164 KB |
testcase_02 | AC | 122 ms
53,876 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 118 ms
53,992 KB |
testcase_06 | AC | 124 ms
53,896 KB |
testcase_07 | AC | 125 ms
54,272 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 127 ms
54,316 KB |
testcase_11 | AC | 121 ms
53,976 KB |
testcase_12 | AC | 123 ms
54,232 KB |
testcase_13 | AC | 122 ms
54,244 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++; if(i == str.length() - 1){ if(max < count){ max = count; } } } else{ if(max < count){ max = count; count = 0; } } } System.out.println(max); } }