結果
問題 | No.341 沈黙の期間 |
ユーザー | Taka |
提出日時 | 2016-11-01 20:27:03 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 416 bytes |
コンパイル時間 | 2,279 ms |
コンパイル使用メモリ | 75,324 KB |
実行使用メモリ | 56,048 KB |
最終ジャッジ日時 | 2024-05-03 20:55:10 |
合計ジャッジ時間 | 4,834 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,796 KB |
testcase_01 | AC | 130 ms
54,052 KB |
testcase_02 | AC | 129 ms
54,272 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 130 ms
54,084 KB |
testcase_12 | AC | 133 ms
53,968 KB |
testcase_13 | AC | 131 ms
53,992 KB |
ソースコード
import java.util.Scanner; import java.util.Arrays; class a{ public static void main(String[] b){ Scanner s=new Scanner(System.in); String a=s.next(); int t[]=new int[10]; Arrays.fill(t,0); int n=0,m=0; for(int i=0;i<a.length();i++){ if(a.charAt(i)!='…')n++; if(a.charAt(i)=='…')t[n]++; } for(int j=0;j<10;j++){ if(t[j]>m)m=t[j]; } System.out.println(m); } }