結果

問題 No.437 cwwゲーム
ユーザー GrenacheGrenache
提出日時 2016-10-28 22:40:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,492 bytes
コンパイル時間 3,526 ms
コンパイル使用メモリ 79,204 KB
実行使用メモリ 55,020 KB
最終ジャッジ日時 2024-11-24 05:50:45
合計ジャッジ時間 10,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,492 KB
testcase_01 AC 124 ms
41,144 KB
testcase_02 AC 114 ms
39,716 KB
testcase_03 AC 124 ms
41,312 KB
testcase_04 AC 123 ms
41,140 KB
testcase_05 AC 124 ms
41,140 KB
testcase_06 AC 112 ms
41,364 KB
testcase_07 WA -
testcase_08 AC 125 ms
41,584 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 122 ms
41,124 KB
testcase_12 AC 124 ms
41,300 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 125 ms
41,540 KB
testcase_17 AC 123 ms
41,104 KB
testcase_18 WA -
testcase_19 AC 123 ms
41,256 KB
testcase_20 AC 120 ms
39,920 KB
testcase_21 AC 125 ms
41,176 KB
testcase_22 AC 126 ms
41,440 KB
testcase_23 AC 132 ms
41,164 KB
testcase_24 AC 113 ms
41,304 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 122 ms
41,328 KB
testcase_28 AC 111 ms
40,884 KB
testcase_29 AC 122 ms
41,236 KB
testcase_30 AC 122 ms
41,308 KB
testcase_31 AC 125 ms
41,072 KB
testcase_32 AC 110 ms
41,388 KB
testcase_33 AC 117 ms
39,932 KB
testcase_34 AC 111 ms
41,200 KB
testcase_35 AC 129 ms
41,100 KB
testcase_36 AC 123 ms
41,376 KB
testcase_37 AC 121 ms
41,252 KB
testcase_38 AC 124 ms
41,208 KB
testcase_39 AC 123 ms
41,512 KB
testcase_40 AC 122 ms
41,248 KB
testcase_41 WA -
testcase_42 AC 125 ms
41,132 KB
testcase_43 AC 123 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder437 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		String s = sc.next();

		int ret = 0;
		while (s.length() >= 3) {
			// n個のビットのうち、i個のビットが立っているmaskのパターンの生成
			int n = s.length();
			int i = 3;

			int max = 0;
			int maxm = 0;
			int mask = (0x1 << i) - 1;
			while (mask < 0x1 << n) {
				// maskに対する処理

				char[] tmp = new char[3];
				int k = 0;
				for (int j = 0; j < n; j++) {
					if ((mask & 0x1 << j) != 0) {
						tmp[k++] = s.charAt(j);
					}
				}

				if (tmp[0] != '0' && tmp[0] != tmp[1] && tmp[1] == tmp[2]) {
					int cww = Integer.parseInt(new String(tmp));
					if (cww > max) {
						max = cww;
						maxm = mask;
					}
				}

				// 次のmaskの計算
				int x = mask & -mask;
				int y = mask + x;
				mask = ((mask & ~y) / x >> 1) | y;
			}

			if (max == 0) {
				break;
			} else {
				ret += max;
				for (int j = n - 1; j >= 0; j--) {
					if ((maxm & 0x1 << j) != 0) {
						s = s.substring(0, j) + s.substring(j + 1);
					}
				}
			}
		}

		pr.println(ret);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0