結果
問題 | No.341 沈黙の期間 |
ユーザー | Taka |
提出日時 | 2016-11-01 20:15:58 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 3,959 ms |
コンパイル使用メモリ | 75,012 KB |
実行使用メモリ | 54,348 KB |
最終ジャッジ日時 | 2024-11-25 01:17:31 |
合計ジャッジ時間 | 6,115 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
53,688 KB |
testcase_01 | WA | - |
testcase_02 | AC | 125 ms
53,788 KB |
testcase_03 | WA | - |
testcase_04 | AC | 128 ms
54,324 KB |
testcase_05 | WA | - |
testcase_06 | AC | 127 ms
53,640 KB |
testcase_07 | WA | - |
testcase_08 | AC | 128 ms
54,044 KB |
testcase_09 | WA | - |
testcase_10 | AC | 125 ms
53,712 KB |
testcase_11 | WA | - |
testcase_12 | AC | 132 ms
53,852 KB |
testcase_13 | RE | - |
ソースコード
import java.util.Scanner; import java.util.Arrays; public class a{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a=sc.next(); int tmp[]=new int[10]; Arrays.fill(tmp, 0); int num=0, max=0; for(int i=0; i<a.length(); i++){ if(a.charAt(i)!='…' && tmp[num]>0){ num++; }else{ tmp[num]++; } } for(int j=0; j<10; j++){ if(tmp[j]>max) max=tmp[j]; } System.out.println(max); } }