結果

問題 No.342 一番ワロタww
ユーザー かにかに
提出日時 2016-02-13 00:51:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 1,802 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 91,104 KB
実行使用メモリ 42,588 KB
最終ジャッジ日時 2024-10-15 13:16:59
合計ジャッジ時間 5,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,224 KB
testcase_01 AC 146 ms
42,356 KB
testcase_02 AC 148 ms
42,444 KB
testcase_03 AC 149 ms
42,444 KB
testcase_04 AC 159 ms
42,256 KB
testcase_05 AC 137 ms
41,912 KB
testcase_06 AC 154 ms
42,580 KB
testcase_07 AC 149 ms
42,216 KB
testcase_08 AC 137 ms
42,040 KB
testcase_09 AC 148 ms
42,304 KB
testcase_10 AC 143 ms
42,088 KB
testcase_11 AC 133 ms
42,084 KB
testcase_12 AC 150 ms
42,476 KB
testcase_13 AC 147 ms
42,588 KB
testcase_14 AC 118 ms
41,468 KB
testcase_15 AC 117 ms
41,276 KB
testcase_16 AC 145 ms
42,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String s = sc.nextLine();
        int wcnt = 0;
        for(int i = 0;i < s.length();i++){
        	if(s.charAt(i) == 'w')wcnt++;
        }
        if(wcnt == 0 || wcnt == s.length()){
        	System.out.println("");
        	return;
        }
        int l = 0;
        int maxi = 0;
        String tmp = "",maxs = new String();
        Queue<String> que = new ArrayDeque<String>();
        int i = 0;
        for(;i < s.length();){
            l = 0;
            while(i < s.length() && s.charAt(i) != 'w'){
                tmp = tmp + s.charAt(i);
                i++;
            }
            while(i < s.length() && s.charAt(i) == 'w'){
                l++;
                i++;
            }
            if(l > maxi && tmp != ""){
                maxi = l;
                while(!que.isEmpty()){
                    que.remove();
                }
                que.add(tmp);
                tmp = "";
            }else if(l == maxi && tmp != "" && l != 0){
                que.add(tmp);
                tmp = "";
            }else{
            	tmp = "";
            }
        }
        if(l > maxi && tmp != ""){
            maxi = l;
            while(!que.isEmpty()){
                que.remove();
            }
            que.add(tmp);
            tmp = "";
        }else if(l == maxi && tmp != ""){
            que.add(tmp);
            tmp = "";
        }
        if(que.size() == 0){
        	System.out.println("");
        }
        while(!que.isEmpty()){
            System.out.println(que.element());
            que.remove();
        }
    }
}
	
0