結果
問題 | No.342 一番ワロタww |
ユーザー | YamaKasa |
提出日時 | 2018-09-16 22:16:45 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 5,000 ms |
コード長 | 1,448 bytes |
コンパイル時間 | 2,045 ms |
コンパイル使用メモリ | 79,536 KB |
実行使用メモリ | 41,480 KB |
最終ジャッジ日時 | 2024-07-18 07:32:09 |
合計ジャッジ時間 | 4,738 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
41,404 KB |
testcase_01 | AC | 116 ms
41,448 KB |
testcase_02 | AC | 123 ms
41,376 KB |
testcase_03 | AC | 114 ms
41,392 KB |
testcase_04 | AC | 110 ms
41,480 KB |
testcase_05 | AC | 124 ms
41,356 KB |
testcase_06 | AC | 107 ms
40,176 KB |
testcase_07 | AC | 126 ms
41,472 KB |
testcase_08 | AC | 115 ms
40,320 KB |
testcase_09 | AC | 117 ms
41,248 KB |
testcase_10 | AC | 111 ms
41,432 KB |
testcase_11 | AC | 132 ms
41,132 KB |
testcase_12 | AC | 105 ms
41,364 KB |
testcase_13 | AC | 119 ms
40,980 KB |
testcase_14 | AC | 126 ms
41,124 KB |
testcase_15 | AC | 108 ms
40,424 KB |
testcase_16 | AC | 115 ms
40,224 KB |
ソースコード
import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String S = scan.nextLine(); scan.close(); if(S.substring(0, 1).equals("w")) { for(int i = 0; i < S.length(); i++) { if(S.substring(i, i + 1).equals("w")) { continue; }else { S = S.substring(i, S.length()); break; } } } S = S + " "; String []ary = new String[S.length()]; for(int i = 0; i < S.length(); i++) { ary[i] = S.substring(i, i + 1); } int l = ary.length; int max = 0; List<Data>list = new ArrayList<Data>(); int begin = 0; for(int i = 0; i < l; i++) { if(ary[i].equals("w")) { int cnt = 1; int t = i; i++; while(i < l) { if(ary[i].equals("w")) { cnt ++; i++; continue; }else { String s = S.substring(begin, t); begin = i; Data d = new Data(s, cnt); list.add(d); if(max < cnt) { max = cnt; } break; } } } } StringBuilder sb = new StringBuilder(); for(int i = 0; i < list.size(); i++) { if(list.get(i).getN() == max) { sb.append(list.get(i).getS()).append("\n"); } } System.out.print(sb.toString()); } } class Data{ String s; int n; public Data(String s, int n) { this.s = s; this.n = n; } String getS() { return s; } int getN() { return n; } }