結果
問題 | No.341 沈黙の期間 |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-11 23:30:14 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 2,500 ms |
コンパイル使用メモリ | 74,376 KB |
実行使用メモリ | 54,468 KB |
最終ジャッジ日時 | 2024-11-21 12:50:47 |
合計ジャッジ時間 | 4,351 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
53,988 KB |
testcase_01 | AC | 120 ms
54,212 KB |
testcase_02 | AC | 119 ms
53,964 KB |
testcase_03 | AC | 119 ms
54,468 KB |
testcase_04 | AC | 120 ms
53,976 KB |
testcase_05 | AC | 118 ms
53,880 KB |
testcase_06 | AC | 117 ms
54,016 KB |
testcase_07 | AC | 119 ms
54,192 KB |
testcase_08 | AC | 119 ms
53,936 KB |
testcase_09 | AC | 124 ms
54,268 KB |
testcase_10 | AC | 120 ms
53,960 KB |
testcase_11 | WA | - |
testcase_12 | AC | 119 ms
53,992 KB |
testcase_13 | WA | - |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String s = sc.next(); int leng = 0; int max = -1; for (int i=0; i<s.length(); i++) { char c = s.charAt(i); if (c=='…') { leng++; max = Math.max(max,leng); } else { leng = 0; } } System.out.println(max==-1?-1:max); } }