結果

問題 No.342 一番ワロタww
ユーザー かにかに
提出日時 2016-02-12 22:53:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,163 bytes
コンパイル時間 2,704 ms
コンパイル使用メモリ 79,848 KB
実行使用メモリ 58,548 KB
最終ジャッジ日時 2023-10-22 03:19:59
合計ジャッジ時間 6,555 ms
ジャッジサーバーID
(参考情報)
judge9 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
58,280 KB
testcase_01 AC 165 ms
58,156 KB
testcase_02 AC 167 ms
58,372 KB
testcase_03 AC 167 ms
58,336 KB
testcase_04 AC 170 ms
58,096 KB
testcase_05 AC 167 ms
58,308 KB
testcase_06 AC 164 ms
58,548 KB
testcase_07 AC 164 ms
58,548 KB
testcase_08 AC 168 ms
58,544 KB
testcase_09 WA -
testcase_10 AC 165 ms
58,540 KB
testcase_11 AC 167 ms
58,532 KB
testcase_12 AC 169 ms
58,196 KB
testcase_13 AC 163 ms
58,492 KB
testcase_14 AC 164 ms
58,300 KB
testcase_15 AC 130 ms
57,380 KB
testcase_16 AC 167 ms
58,308 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 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 != "" && l != 0){
				maxi = l;
				while(!que.isEmpty()){
					que.remove();
				}
				que.add(tmp);
				tmp = "";
			}else if(l == maxi && tmp != "" && l != 0){
				que.add(tmp);
				tmp = "";
			}
		}
		if(l > maxi && tmp != "" && l != 0){
			maxi = l;
			while(!que.isEmpty()){
				que.remove();
			}
			que.add(tmp);
			tmp = "";
		}else if(l == maxi && tmp != "" && l != 0){
			que.add(tmp);
			tmp = "";
		}
		if(que.size() == 0){
			System.out.println("");
		}else{
			while(!que.isEmpty()){
				System.out.println(que.element());
				que.remove();
			}
		}
	}
}
	
0