結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 111 ms
41,440 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 119 ms
41,324 KB
testcase_12 AC 122 ms
41,188 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 120 ms
41,172 KB
testcase_20 AC 123 ms
41,156 KB
testcase_21 AC 121 ms
41,160 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 120 ms
40,952 KB
testcase_28 WA -
testcase_29 AC 121 ms
41,004 KB
testcase_30 AC 126 ms
40,960 KB
testcase_31 AC 122 ms
41,028 KB
testcase_32 AC 109 ms
40,756 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 125 ms
40,720 KB
testcase_37 AC 124 ms
41,176 KB
testcase_38 WA -
testcase_39 AC 121 ms
41,348 KB
testcase_40 AC 120 ms
40,828 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