結果

問題 No.342 一番ワロタww
ユーザー fal_rndfal_rnd
提出日時 2016-10-27 19:46:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 529 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 76,532 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-10-15 13:34:06
合計ジャッジ時間 5,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,288 KB
testcase_01 AC 130 ms
41,008 KB
testcase_02 AC 131 ms
41,124 KB
testcase_03 AC 131 ms
41,172 KB
testcase_04 AC 131 ms
41,364 KB
testcase_05 AC 131 ms
41,008 KB
testcase_06 AC 132 ms
40,848 KB
testcase_07 AC 134 ms
41,028 KB
testcase_08 AC 131 ms
41,428 KB
testcase_09 AC 128 ms
41,264 KB
testcase_10 AC 130 ms
41,248 KB
testcase_11 AC 130 ms
41,372 KB
testcase_12 AC 132 ms
41,068 KB
testcase_13 AC 131 ms
41,068 KB
testcase_14 AC 128 ms
41,088 KB
testcase_15 AC 130 ms
41,148 KB
testcase_16 AC 130 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class A {

	static Scanner s = new Scanner(System.in);
	static String  w = "w";


	public static void main(String[] args) {
		String in = s.nextLine();
		if(in.startsWith(w))
			in = in.replaceFirst("w+", "");
		in = in.substring(0, in.lastIndexOf(w)+1);

		if(!in.contains(w)) {
			System.out.println();
			return;
		}


		String ww = w;
		while(in.contains(ww+w)) {
			ww+=w;
		}
		String[] ss = in.split(ww);
		for(String s:ss) {
			System.out.println(s.substring(s.lastIndexOf(w)+1));
		}
	}
}
0