結果

問題 No.437 cwwゲーム
ユーザー YamaKasaYamaKasa
提出日時 2018-09-21 22:03:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,169 bytes
コンパイル時間 2,579 ms
コンパイル使用メモリ 77,388 KB
実行使用メモリ 54,676 KB
最終ジャッジ日時 2024-07-18 08:48:05
合計ジャッジ時間 9,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,968 KB
testcase_01 AC 126 ms
41,516 KB
testcase_02 AC 133 ms
41,472 KB
testcase_03 AC 123 ms
41,212 KB
testcase_04 AC 108 ms
39,972 KB
testcase_05 AC 141 ms
41,532 KB
testcase_06 AC 149 ms
42,460 KB
testcase_07 WA -
testcase_08 AC 164 ms
46,760 KB
testcase_09 WA -
testcase_10 AC 171 ms
46,436 KB
testcase_11 AC 110 ms
40,160 KB
testcase_12 AC 124 ms
41,696 KB
testcase_13 AC 130 ms
40,732 KB
testcase_14 AC 133 ms
41,568 KB
testcase_15 AC 172 ms
45,676 KB
testcase_16 AC 114 ms
39,960 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 122 ms
41,424 KB
testcase_21 AC 121 ms
41,396 KB
testcase_22 AC 123 ms
41,648 KB
testcase_23 AC 122 ms
41,140 KB
testcase_24 AC 124 ms
41,460 KB
testcase_25 AC 113 ms
40,304 KB
testcase_26 AC 127 ms
41,328 KB
testcase_27 AC 124 ms
41,456 KB
testcase_28 AC 124 ms
41,112 KB
testcase_29 AC 126 ms
40,936 KB
testcase_30 AC 120 ms
40,560 KB
testcase_31 AC 124 ms
41,072 KB
testcase_32 AC 116 ms
40,372 KB
testcase_33 AC 131 ms
41,488 KB
testcase_34 AC 125 ms
41,184 KB
testcase_35 AC 123 ms
41,376 KB
testcase_36 AC 131 ms
41,484 KB
testcase_37 AC 131 ms
41,816 KB
testcase_38 AC 124 ms
40,968 KB
testcase_39 AC 116 ms
40,544 KB
testcase_40 AC 122 ms
41,080 KB
testcase_41 AC 129 ms
41,360 KB
testcase_42 AC 126 ms
41,208 KB
testcase_43 AC 113 ms
40,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s = scan.next();
		scan.close();
		if(s.length() < 3) {
			System.out.println(0);
			System.exit(0);
		}
		System.out.println(cww(s));
	}
	static int cww(String s) {
		int l = s.length();
		if(l < 3) {
			return 0;
		}

		int max = 0;
		String s1 = "";
		String s2 = "";
		for(int i = 0; i < l - 2; i++) {
			char c1 = s.charAt(i);
			if(c1 == 0) {
				continue;
			}
			for(int j = i + 1; j < l - 1; j++) {
				char c2 = s.charAt(j);
				if(c2 == c1) {
					continue;
				}
				for(int k = j + 1; k < l; k++) {
					char c3 = s.charAt(k);
					int p = 0;
					if(c2 == c3) {
						p += 100 * Character.getNumericValue(c1);
						p += 10 * Character.getNumericValue(c2);
						p += Character.getNumericValue(c3);
						s1 = String.valueOf(c1);
						s2 = String.valueOf(c2);
						StringBuilder sb = new StringBuilder(s);
						sb.deleteCharAt(sb.indexOf(s1));
						sb.deleteCharAt(sb.indexOf(s2));
						sb.deleteCharAt(sb.indexOf(s2));
						max = Math.max(max, p + cww(sb.toString()));
					}
				}
			}
		}
		return max;
	}
}
0