結果

問題 No.437 cwwゲーム
ユーザー ぴろずぴろず
提出日時 2016-10-28 22:43:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,154 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 77,604 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-05-03 07:43:22
合計ジャッジ時間 9,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
41,468 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 130 ms
41,404 KB
testcase_12 AC 136 ms
41,436 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 133 ms
41,032 KB
testcase_20 AC 131 ms
41,020 KB
testcase_21 AC 115 ms
39,956 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 130 ms
41,232 KB
testcase_28 WA -
testcase_29 AC 130 ms
41,312 KB
testcase_30 AC 131 ms
40,960 KB
testcase_31 AC 130 ms
41,228 KB
testcase_32 AC 131 ms
41,192 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 131 ms
41,236 KB
testcase_37 AC 132 ms
41,492 KB
testcase_38 WA -
testcase_39 AC 116 ms
39,996 KB
testcase_40 AC 130 ms
41,016 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
		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;
		do {
			if (p[0] >= 1) break;
			int score = 0;
			Arrays.fill(a, 0);
			for(int i=0;i<n;i++) {
				int j = p[i];
				int c = x[i];
				if (a[j] == 0 && c == 0) {
					continue;
				}
				if (a[j] >= 100) {
					continue;
				}
				a[j] = a[j] * 10 + c;
			}
			for(int i=0;i<m;i++) {
				if (a[i] < 100 || a[i] % 111 == 0 || a[i] % 100 % 11 != 0) {
					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