結果

問題 No.437 cwwゲーム
ユーザー willowoooowillowoooo
提出日時 2016-11-05 16:41:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 966 bytes
コンパイル時間 4,073 ms
コンパイル使用メモリ 78,708 KB
実行使用メモリ 58,152 KB
最終ジャッジ日時 2024-10-12 08:38:50
合計ジャッジ時間 10,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,088 KB
testcase_01 AC 129 ms
54,128 KB
testcase_02 AC 140 ms
54,020 KB
testcase_03 AC 129 ms
53,716 KB
testcase_04 AC 129 ms
54,100 KB
testcase_05 AC 128 ms
54,148 KB
testcase_06 AC 136 ms
53,904 KB
testcase_07 AC 165 ms
57,956 KB
testcase_08 AC 160 ms
55,016 KB
testcase_09 AC 175 ms
57,988 KB
testcase_10 AC 168 ms
57,900 KB
testcase_11 AC 129 ms
54,080 KB
testcase_12 AC 128 ms
53,916 KB
testcase_13 AC 136 ms
54,196 KB
testcase_14 AC 139 ms
54,224 KB
testcase_15 AC 174 ms
58,152 KB
testcase_16 AC 129 ms
54,364 KB
testcase_17 AC 134 ms
54,092 KB
testcase_18 AC 136 ms
53,864 KB
testcase_19 AC 127 ms
53,936 KB
testcase_20 AC 128 ms
53,900 KB
testcase_21 AC 130 ms
54,736 KB
testcase_22 AC 130 ms
54,096 KB
testcase_23 AC 128 ms
53,864 KB
testcase_24 AC 129 ms
53,948 KB
testcase_25 AC 133 ms
54,104 KB
testcase_26 AC 137 ms
54,284 KB
testcase_27 AC 128 ms
54,008 KB
testcase_28 AC 129 ms
53,900 KB
testcase_29 AC 130 ms
54,012 KB
testcase_30 AC 134 ms
54,096 KB
testcase_31 AC 130 ms
54,036 KB
testcase_32 AC 134 ms
54,100 KB
testcase_33 AC 139 ms
53,920 KB
testcase_34 AC 130 ms
54,160 KB
testcase_35 AC 131 ms
53,680 KB
testcase_36 AC 132 ms
53,880 KB
testcase_37 AC 127 ms
53,784 KB
testcase_38 AC 132 ms
54,012 KB
testcase_39 AC 129 ms
53,992 KB
testcase_40 AC 130 ms
53,960 KB
testcase_41 AC 134 ms
53,736 KB
testcase_42 AC 137 ms
53,792 KB
testcase_43 AC 133 ms
53,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Arrays;
import java.util.Scanner;

public class No437 {
	void run() {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();

		System.out.println(max(s));
	}

	int max(String s){
		char[] ss = s.toCharArray();
		int n = s.length();

		int max = 0;
		for (int i = 0; i < n; i++) {
			for (int j = i+1; j < n; j++) {
				 for (int k = j+1; k < n; k++) {
					if(ss[i] != '0' && ss[i] != ss[j] && ss[j] == ss[k]){
						StringBuilder sb = new StringBuilder();
						sb.append(ss[i]).append(ss[j]).append(ss[k]);
						int t = Integer.parseInt(sb.toString());
						StringBuilder sb2 = new StringBuilder(s);
						sb2.deleteCharAt(k);
						sb2.deleteCharAt(j);
						sb2.deleteCharAt(i);
						max = Math.max(max, t+max(sb2.toString()));

					}
				}

			}
		}
		return max;
	}




	void debug(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}

	public static void main(String[] args) {
		new No437().run();
	}
}
0