結果

問題 No.345 最小チワワ問題
ユーザー mitsuomitsuo
提出日時 2016-05-05 11:21:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-10-05 09:29:43
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,156 KB
testcase_01 AC 123 ms
53,920 KB
testcase_02 AC 124 ms
53,808 KB
testcase_03 AC 112 ms
52,916 KB
testcase_04 WA -
testcase_05 AC 123 ms
53,896 KB
testcase_06 WA -
testcase_07 AC 125 ms
53,976 KB
testcase_08 AC 129 ms
53,944 KB
testcase_09 AC 108 ms
52,552 KB
testcase_10 AC 123 ms
53,788 KB
testcase_11 AC 121 ms
53,964 KB
testcase_12 AC 126 ms
54,160 KB
testcase_13 AC 122 ms
54,120 KB
testcase_14 AC 119 ms
53,836 KB
testcase_15 WA -
testcase_16 AC 121 ms
54,048 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 124 ms
54,168 KB
testcase_21 AC 123 ms
54,120 KB
testcase_22 AC 119 ms
54,032 KB
testcase_23 AC 114 ms
53,052 KB
testcase_24 AC 122 ms
53,840 KB
testcase_25 AC 116 ms
53,824 KB
testcase_26 AC 119 ms
54,032 KB
testcase_27 WA -
testcase_28 AC 124 ms
53,996 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 120 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.q345;

import java.util.ArrayList;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		String s = in.get(0);
		int INF = Integer.MAX_VALUE;
		int ans = INF;
		Queue<Integer> cp = new PriorityQueue<>();
		List<Integer> wp = new ArrayList<>();
		char[] ll = s.toCharArray();
		for (int i = 0; i < ll.length; i++) {
			if (ll[i] == 'c') {
				cp.add(i);
			} else if (ll[i] == 'w') {
				wp.add(i);
			}
		}

		while (!cp.isEmpty()) {
			int cplace = cp.poll();
			for (int i = 0; i < wp.size() - 1; i++) {
				int w1place = wp.get(i);
				if (w1place < cplace) {
					continue;
				} else {
					int w2place = wp.get(i + 1);
					ans = w2place - cplace + 1;
				}
			}
		}

		if (ans == INF) {
			return -1;
		} else {
			return ans;
		}
	}

}
0