結果

問題 No.437 cwwゲーム
ユーザー ぴろずぴろず
提出日時 2016-10-28 23:33:18
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,323 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 61,052 KB
最終ジャッジ日時 2024-11-24 06:28:57
合計ジャッジ時間 14,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
46,284 KB
testcase_01 AC 112 ms
41,340 KB
testcase_02 AC 170 ms
41,396 KB
testcase_03 AC 101 ms
41,252 KB
testcase_04 AC 99 ms
41,004 KB
testcase_05 AC 416 ms
41,060 KB
testcase_06 AC 366 ms
41,452 KB
testcase_07 AC 517 ms
41,080 KB
testcase_08 AC 290 ms
41,212 KB
testcase_09 AC 512 ms
40,996 KB
testcase_10 AC 505 ms
41,308 KB
testcase_11 AC 516 ms
40,888 KB
testcase_12 TLE -
testcase_13 AC 217 ms
41,364 KB
testcase_14 AC 168 ms
41,736 KB
testcase_15 AC 505 ms
40,844 KB
testcase_16 AC 491 ms
41,188 KB
testcase_17 AC 144 ms
40,728 KB
testcase_18 AC 143 ms
40,896 KB
testcase_19 AC 114 ms
41,268 KB
testcase_20 WA -
testcase_21 AC 115 ms
41,628 KB
testcase_22 AC 115 ms
41,376 KB
testcase_23 AC 222 ms
41,316 KB
testcase_24 AC 100 ms
41,156 KB
testcase_25 AC 237 ms
41,388 KB
testcase_26 AC 200 ms
41,476 KB
testcase_27 AC 100 ms
41,036 KB
testcase_28 AC 109 ms
41,344 KB
testcase_29 AC 98 ms
41,008 KB
testcase_30 AC 102 ms
40,268 KB
testcase_31 AC 111 ms
40,984 KB
testcase_32 AC 109 ms
41,192 KB
testcase_33 AC 169 ms
40,988 KB
testcase_34 AC 101 ms
40,396 KB
testcase_35 AC 157 ms
41,164 KB
testcase_36 AC 101 ms
41,180 KB
testcase_37 AC 109 ms
41,268 KB
testcase_38 AC 112 ms
40,928 KB
testcase_39 AC 111 ms
41,332 KB
testcase_40 AC 111 ms
41,476 KB
testcase_41 AC 169 ms
41,236 KB
testcase_42 AC 143 ms
41,096 KB
testcase_43 AC 170 ms
61,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no437;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int n = s.length();
		boolean[] isCWW = new boolean[1000];
		for(int i=100;i<1000;i++) {
			isCWW[i] = i % 111 != 0 && i % 100 % 11 == 0;
		}
		int[] x = new int[n];
		for(int i=0;i<n;i++) {
			x[i] = s.charAt(i) - '0';
		}
		int m = (n + 2) / 3;
		int[] p = new int[n];
		int[] a = new int[m];
		int max = 0;
		LOOP: do {
			if (p[n-1] >= 1) break;
			int score = 0;
			Arrays.fill(a, 0);
			int count = 0;
			for(int i=0;i<n;i++) {
				if (count >= 2) continue LOOP;
				int j = p[i];
				int c = x[i];
				if (a[j] == 0 && c == 0) {
					count++;
					continue;
				}
				if (a[j] >= 100) {
					count++;
					continue;
				}
				a[j] = a[j] * 10 + c;
			}
			for(int i=0;i<m;i++) {
				if (!isCWW[a[i]]) {
					continue;
				}
				score += a[i];
			}
//			if (max < score) {
//				System.out.println(score + " " + Arrays.toString(a));
//			}
			max = Math.max(max, score);
		} while (nextSequence(p, m));
		System.out.println(max);
	}
	public static boolean nextSequence(int[] s, int k) {
		int n = s.length;
		for(int i=0;i<n;i++) {
			s[i]++;
			if (s[i] < k) {
				return true;
			}
			s[i] = 0;
		}
		return false;
	}
}
0