結果

問題 No.437 cwwゲーム
ユーザー ぴろずぴろず
提出日時 2016-10-28 22:44:03
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,156 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 77,484 KB
実行使用メモリ 108,812 KB
最終ジャッジ日時 2024-11-24 05:52:49
合計ジャッジ時間 15,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
60,696 KB
testcase_01 AC 115 ms
53,884 KB
testcase_02 AC 184 ms
54,080 KB
testcase_03 AC 115 ms
54,048 KB
testcase_04 AC 110 ms
53,736 KB
testcase_05 AC 545 ms
53,700 KB
testcase_06 AC 554 ms
54,088 KB
testcase_07 AC 593 ms
53,920 KB
testcase_08 AC 536 ms
54,352 KB
testcase_09 AC 606 ms
53,952 KB
testcase_10 AC 635 ms
53,980 KB
testcase_11 AC 520 ms
54,652 KB
testcase_12 TLE -
testcase_13 AC 238 ms
53,980 KB
testcase_14 AC 141 ms
53,712 KB
testcase_15 AC 580 ms
53,868 KB
testcase_16 AC 503 ms
53,860 KB
testcase_17 AC 138 ms
53,676 KB
testcase_18 AC 163 ms
54,464 KB
testcase_19 AC 99 ms
52,952 KB
testcase_20 AC 104 ms
53,356 KB
testcase_21 AC 114 ms
53,644 KB
testcase_22 AC 114 ms
54,036 KB
testcase_23 AC 229 ms
53,944 KB
testcase_24 AC 110 ms
53,904 KB
testcase_25 AC 232 ms
53,888 KB
testcase_26 AC 234 ms
53,916 KB
testcase_27 AC 113 ms
53,796 KB
testcase_28 AC 120 ms
54,104 KB
testcase_29 AC 115 ms
54,100 KB
testcase_30 AC 120 ms
55,588 KB
testcase_31 AC 115 ms
54,064 KB
testcase_32 AC 105 ms
52,800 KB
testcase_33 AC 149 ms
53,852 KB
testcase_34 AC 115 ms
53,760 KB
testcase_35 AC 176 ms
54,304 KB
testcase_36 AC 101 ms
53,088 KB
testcase_37 AC 102 ms
52,968 KB
testcase_38 AC 114 ms
53,600 KB
testcase_39 AC 104 ms
53,012 KB
testcase_40 AC 113 ms
53,896 KB
testcase_41 AC 141 ms
53,776 KB
testcase_42 AC 166 ms
54,076 KB
testcase_43 AC 165 ms
108,812 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();
		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[n-1] >= 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