結果
問題 | No.341 沈黙の期間 |
ユーザー | めうめう🎒 |
提出日時 | 2016-05-07 20:59:27 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 556 bytes |
コンパイル時間 | 1,765 ms |
コンパイル使用メモリ | 73,752 KB |
実行使用メモリ | 41,284 KB |
最終ジャッジ日時 | 2024-10-05 10:25:49 |
合計ジャッジ時間 | 3,772 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
41,284 KB |
testcase_01 | AC | 104 ms
40,784 KB |
testcase_02 | WA | - |
testcase_03 | AC | 101 ms
40,640 KB |
testcase_04 | AC | 102 ms
41,204 KB |
testcase_05 | AC | 94 ms
39,648 KB |
testcase_06 | AC | 94 ms
39,944 KB |
testcase_07 | AC | 104 ms
41,156 KB |
testcase_08 | AC | 94 ms
39,804 KB |
testcase_09 | AC | 98 ms
41,040 KB |
testcase_10 | AC | 95 ms
40,304 KB |
testcase_11 | AC | 104 ms
40,884 KB |
testcase_12 | WA | - |
testcase_13 | AC | 92 ms
40,180 KB |
ソースコード
import java.util.Scanner; public class Main { private String str; public void setStr(String str){ this.str = str; } public String getStr(){ return str; } public void countNum(){ int num = 0,ans = 0; for(int i = 0;i < this.str.length();i++){ if(str.substring(i,i + 1).equals("…")) { num++; }else{ ans = Math.max(num,ans); num = 0; } } System.out.println(ans); } public static void main(String[] args) { Scanner sc = new Scanner(System.in); Main m = new Main(); m.setStr(sc.next()); m.countNum(); } }