結果

問題 No.437 cwwゲーム
ユーザー YamaKasaYamaKasa
提出日時 2018-09-21 22:23:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 44,060 KB
最終ジャッジ日時 2024-10-12 08:48:58
合計ジャッジ時間 9,129 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,236 KB
testcase_01 AC 130 ms
41,248 KB
testcase_02 AC 115 ms
40,152 KB
testcase_03 AC 121 ms
41,196 KB
testcase_04 AC 122 ms
41,272 KB
testcase_05 AC 122 ms
41,376 KB
testcase_06 AC 130 ms
41,052 KB
testcase_07 AC 157 ms
42,912 KB
testcase_08 AC 135 ms
41,476 KB
testcase_09 AC 154 ms
44,060 KB
testcase_10 AC 154 ms
42,680 KB
testcase_11 AC 120 ms
41,168 KB
testcase_12 AC 125 ms
40,980 KB
testcase_13 AC 131 ms
41,176 KB
testcase_14 AC 132 ms
41,284 KB
testcase_15 AC 158 ms
44,052 KB
testcase_16 AC 124 ms
41,504 KB
testcase_17 AC 121 ms
41,116 KB
testcase_18 AC 127 ms
41,396 KB
testcase_19 AC 121 ms
41,016 KB
testcase_20 AC 113 ms
40,536 KB
testcase_21 AC 108 ms
39,800 KB
testcase_22 AC 123 ms
40,872 KB
testcase_23 AC 123 ms
40,940 KB
testcase_24 AC 106 ms
40,116 KB
testcase_25 AC 118 ms
41,200 KB
testcase_26 AC 121 ms
41,040 KB
testcase_27 AC 119 ms
41,120 KB
testcase_28 AC 123 ms
41,084 KB
testcase_29 AC 121 ms
41,264 KB
testcase_30 AC 128 ms
41,372 KB
testcase_31 AC 109 ms
39,968 KB
testcase_32 AC 127 ms
41,620 KB
testcase_33 AC 122 ms
41,200 KB
testcase_34 AC 112 ms
40,608 KB
testcase_35 AC 122 ms
41,536 KB
testcase_36 AC 119 ms
40,812 KB
testcase_37 AC 131 ms
41,248 KB
testcase_38 AC 122 ms
41,192 KB
testcase_39 AC 117 ms
41,648 KB
testcase_40 AC 121 ms
41,344 KB
testcase_41 AC 125 ms
41,248 KB
testcase_42 AC 123 ms
41,028 KB
testcase_43 AC 127 ms
40,960 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;

		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);
					if(c2 == c3) {
						int p = 0;
						p += 100 * Character.getNumericValue(c1);
						p += 10 * Character.getNumericValue(c2);
						p += Character.getNumericValue(c3);
						StringBuilder sb = new StringBuilder(s);
						sb.deleteCharAt(k);
						sb.deleteCharAt(j);
						sb.deleteCharAt(i);
						max = Math.max(max, p + cww(sb.toString()));
					}
				}
			}
		}
		return max;
	}
}
0