結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,204 KB
testcase_01 AC 134 ms
41,404 KB
testcase_02 AC 135 ms
41,312 KB
testcase_03 AC 131 ms
41,288 KB
testcase_04 AC 133 ms
41,388 KB
testcase_05 AC 134 ms
41,288 KB
testcase_06 AC 133 ms
41,124 KB
testcase_07 WA -
testcase_08 AC 134 ms
41,488 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 130 ms
40,928 KB
testcase_12 AC 134 ms
41,432 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
41,036 KB
testcase_17 AC 132 ms
40,936 KB
testcase_18 WA -
testcase_19 AC 131 ms
41,580 KB
testcase_20 AC 116 ms
40,076 KB
testcase_21 AC 133 ms
41,216 KB
testcase_22 AC 129 ms
41,216 KB
testcase_23 AC 130 ms
41,292 KB
testcase_24 AC 134 ms
41,368 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 130 ms
41,644 KB
testcase_28 AC 128 ms
41,064 KB
testcase_29 AC 129 ms
41,584 KB
testcase_30 AC 117 ms
40,092 KB
testcase_31 AC 132 ms
41,204 KB
testcase_32 AC 130 ms
40,748 KB
testcase_33 AC 134 ms
41,100 KB
testcase_34 AC 138 ms
41,416 KB
testcase_35 AC 137 ms
41,508 KB
testcase_36 AC 132 ms
41,188 KB
testcase_37 AC 130 ms
41,164 KB
testcase_38 AC 135 ms
41,620 KB
testcase_39 AC 132 ms
41,312 KB
testcase_40 AC 125 ms
40,004 KB
testcase_41 WA -
testcase_42 AC 131 ms
41,096 KB
testcase_43 AC 132 ms
41,636 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