結果

問題 No.342 一番ワロタww
ユーザー holegumaholeguma
提出日時 2016-02-18 22:56:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 75,764 KB
実行使用メモリ 36,980 KB
最終ジャッジ日時 2024-10-15 13:21:20
合計ジャッジ時間 3,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,880 KB
testcase_01 AC 52 ms
36,968 KB
testcase_02 AC 53 ms
36,888 KB
testcase_03 AC 54 ms
36,672 KB
testcase_04 AC 54 ms
36,588 KB
testcase_05 AC 54 ms
36,880 KB
testcase_06 AC 53 ms
36,856 KB
testcase_07 AC 53 ms
36,980 KB
testcase_08 AC 54 ms
36,704 KB
testcase_09 AC 54 ms
36,604 KB
testcase_10 AC 53 ms
36,864 KB
testcase_11 AC 53 ms
36,516 KB
testcase_12 AC 52 ms
36,584 KB
testcase_13 AC 52 ms
36,968 KB
testcase_14 AC 52 ms
36,936 KB
testcase_15 AC 52 ms
36,812 KB
testcase_16 AC 53 ms
36,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main{

    public static void main(String[] args) throws IOException{
                BufferedReader ir=new BufferedReader(new InputStreamReader(System.in,"UTF-8"));
		String s=ir.readLine();
		ArrayList<String> ans=new ArrayList<>();
		ans.add("");
		int l=0,ma=0;
		while(l<s.length()&&s.charAt(l)=='w') l++;
		for(int i=l;i<s.length();i++){
			if(s.charAt(i)=='w'){
				int st=i;
				while(i<s.length()&&s.charAt(i)=='w') i++;
				if(i-st>ma){
					ma=i-st;
					ans.clear();
					ans.add(s.substring(l,st));
				}
				else if(i-st==ma) ans.add(s.substring(l,st));
				l=i--;
			}
		}
		for(String ss : ans){
			System.out.println(ss);
		}
	}
}
0