結果

問題 No.342 一番ワロタww
ユーザー GrenacheGrenache
提出日時 2016-02-12 22:39:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,134 bytes
コンパイル時間 4,931 ms
コンパイル使用メモリ 78,504 KB
実行使用メモリ 57,484 KB
最終ジャッジ日時 2023-10-22 03:16:06
合計ジャッジ時間 8,150 ms
ジャッジサーバーID
(参考情報)
judge11 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
57,112 KB
testcase_01 WA -
testcase_02 AC 136 ms
57,412 KB
testcase_03 AC 139 ms
57,140 KB
testcase_04 AC 133 ms
57,140 KB
testcase_05 AC 136 ms
57,392 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 135 ms
57,104 KB
testcase_09 AC 132 ms
57,408 KB
testcase_10 AC 137 ms
57,108 KB
testcase_11 AC 136 ms
57,380 KB
testcase_12 AC 135 ms
57,388 KB
testcase_13 AC 138 ms
57,384 KB
testcase_14 AC 135 ms
57,440 KB
testcase_15 AC 137 ms
57,132 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;


public class Main_yukicoder342 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String s = sc.next();
        int n = s.length();

        List<String> str = new ArrayList<String>();
        List<Integer> len = new ArrayList<Integer>();

        int max = 0;
        int i = 0;
        while (i < n) {
        	int j = s.indexOf('w', i);
        	if (j == -1){
        		str.add(s.substring(i, n));
        		len.add(0);
        		break;
        	} else {
        		str.add(s.substring(i, j));
        		i = j;
        	}

        	int tmp = 0;
        	while (i < n && s.charAt(i) == 'w') {
        		tmp++;
        		i++;
        	}
        	len.add(tmp);
        	max = Math.max(max, tmp);
        }

        if (str.size() == 1) {
        	System.out.println();
        } else {
        	for (int j = 0; j < str.size(); j++) {
        		if (len.get(j) == max && str.get(j).length() > 0) {
        			System.out.println(str.get(j));
        		}
        	}
        }

        sc.close();
    }
}
0