結果
問題 | No.341 沈黙の期間 |
ユーザー | uwi |
提出日時 | 2016-02-12 22:23:37 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 5,000 ms |
コード長 | 880 bytes |
コンパイル時間 | 3,725 ms |
コンパイル使用メモリ | 78,504 KB |
実行使用メモリ | 54,628 KB |
最終ジャッジ日時 | 2024-09-22 04:20:00 |
合計ジャッジ時間 | 6,264 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,628 KB |
testcase_01 | AC | 130 ms
53,980 KB |
testcase_02 | AC | 131 ms
54,088 KB |
testcase_03 | AC | 134 ms
54,392 KB |
testcase_04 | AC | 132 ms
54,076 KB |
testcase_05 | AC | 128 ms
54,108 KB |
testcase_06 | AC | 129 ms
54,348 KB |
testcase_07 | AC | 131 ms
53,916 KB |
testcase_08 | AC | 129 ms
54,160 KB |
testcase_09 | AC | 132 ms
54,296 KB |
testcase_10 | AC | 128 ms
54,132 KB |
testcase_11 | AC | 127 ms
53,980 KB |
testcase_12 | AC | 129 ms
54,400 KB |
testcase_13 | AC | 130 ms
54,012 KB |
ソースコード
import java.io.PrintWriter; import java.util.Arrays; import java.util.Scanner; public class AA2 { static Scanner in; static PrintWriter out; static String INPUT = ""; static void solve() { char[] s = in.nextLine().toCharArray(); int dot = 0; int max = 0; for(char c : s){ if(c == '…'){ dot++; }else{ dot = 0; } if(dot > max)max = dot; } out.println(max); } public static void main(String[] args) throws Exception { in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT); out = new PrintWriter(System.out); solve(); out.flush(); } static int ni() { return Integer.parseInt(in.next()); } static long nl() { return Long.parseLong(in.next()); } static double nd() { return Double.parseDouble(in.next()); } static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); } }