結果

問題 No.342 一番ワロタww
ユーザー かにかに
提出日時 2016-02-13 00:21:32
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,721 bytes
コンパイル時間 2,392 ms
コンパイル使用メモリ 87,348 KB
実行使用メモリ 55,192 KB
最終ジャッジ日時 2024-09-22 05:09:36
合計ジャッジ時間 5,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 161 ms
55,156 KB
testcase_02 AC 152 ms
54,972 KB
testcase_03 AC 141 ms
54,800 KB
testcase_04 AC 154 ms
54,992 KB
testcase_05 AC 158 ms
55,004 KB
testcase_06 AC 145 ms
54,636 KB
testcase_07 AC 157 ms
55,192 KB
testcase_08 AC 158 ms
55,192 KB
testcase_09 AC 160 ms
54,964 KB
testcase_10 AC 159 ms
54,960 KB
testcase_11 AC 163 ms
54,984 KB
testcase_12 AC 156 ms
54,856 KB
testcase_13 AC 161 ms
54,700 KB
testcase_14 AC 126 ms
54,120 KB
testcase_15 AC 127 ms
53,888 KB
testcase_16 AC 157 ms
54,960 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 = -1;
        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 != ""){
                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 = "";
        }
        while(!que.isEmpty()){
            System.out.println(que.element());
            que.remove();
        }
    }
}
	
0