結果

問題 No.437 cwwゲーム
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-18 02:38:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 3,898 ms
コンパイル使用メモリ 78,008 KB
実行使用メモリ 47,644 KB
最終ジャッジ日時 2024-10-12 08:47:24
合計ジャッジ時間 10,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,988 KB
testcase_01 AC 122 ms
41,236 KB
testcase_02 AC 136 ms
40,892 KB
testcase_03 AC 114 ms
39,816 KB
testcase_04 AC 122 ms
41,056 KB
testcase_05 AC 125 ms
41,304 KB
testcase_06 AC 132 ms
41,700 KB
testcase_07 AC 168 ms
46,260 KB
testcase_08 AC 153 ms
42,652 KB
testcase_09 AC 163 ms
45,352 KB
testcase_10 AC 168 ms
44,444 KB
testcase_11 AC 120 ms
40,876 KB
testcase_12 AC 126 ms
40,960 KB
testcase_13 AC 134 ms
41,524 KB
testcase_14 AC 132 ms
41,308 KB
testcase_15 AC 165 ms
47,644 KB
testcase_16 AC 124 ms
41,296 KB
testcase_17 AC 128 ms
41,124 KB
testcase_18 AC 129 ms
41,488 KB
testcase_19 AC 124 ms
41,184 KB
testcase_20 AC 124 ms
40,972 KB
testcase_21 AC 124 ms
41,092 KB
testcase_22 AC 126 ms
41,252 KB
testcase_23 AC 125 ms
41,316 KB
testcase_24 AC 125 ms
41,408 KB
testcase_25 AC 128 ms
41,236 KB
testcase_26 AC 125 ms
41,228 KB
testcase_27 AC 123 ms
40,988 KB
testcase_28 AC 126 ms
41,028 KB
testcase_29 AC 103 ms
39,612 KB
testcase_30 AC 124 ms
41,376 KB
testcase_31 AC 124 ms
41,112 KB
testcase_32 AC 125 ms
40,992 KB
testcase_33 AC 128 ms
41,316 KB
testcase_34 AC 123 ms
41,208 KB
testcase_35 AC 121 ms
41,628 KB
testcase_36 AC 108 ms
40,160 KB
testcase_37 AC 122 ms
41,452 KB
testcase_38 AC 124 ms
41,248 KB
testcase_39 AC 123 ms
41,224 KB
testcase_40 AC 123 ms
41,068 KB
testcase_41 AC 127 ms
41,144 KB
testcase_42 AC 110 ms
40,156 KB
testcase_43 AC 128 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class CWWGame{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		String s = sc.nextLine();
		int max_cww = new CWWGame().get_max_cww(s);
		System.out.println(max_cww);
	}

	int get_max_cww(String s){
		char[] ss = s.toCharArray();
		int n = s.length();
		int max_cww = 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]);
						sb.append(ss[j]);
						sb.append(ss[k]);
						int cww = Integer.parseInt(sb.toString());
						
						StringBuilder sb2 = new StringBuilder(s);
						sb2.deleteCharAt(k);
						sb2.deleteCharAt(j);
						sb2.deleteCharAt(i);

						max_cww = Math.max(max_cww, cww+get_max_cww(sb2.toString()));
					}
				}
			}
		}
		return max_cww;
	}
}
0