結果

問題 No.437 cwwゲーム
ユーザー ぴろずぴろず
提出日時 2016-10-28 22:40:56
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,129 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 76,960 KB
実行使用メモリ 82,332 KB
最終ジャッジ日時 2024-11-24 05:50:33
合計ジャッジ時間 30,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
46,448 KB
testcase_01 AC 119 ms
41,116 KB
testcase_02 AC 268 ms
40,932 KB
testcase_03 AC 119 ms
41,084 KB
testcase_04 AC 118 ms
40,948 KB
testcase_05 TLE -
testcase_06 AC 1,783 ms
41,232 KB
testcase_07 AC 1,983 ms
41,292 KB
testcase_08 AC 1,695 ms
41,092 KB
testcase_09 AC 1,973 ms
41,296 KB
testcase_10 AC 1,992 ms
41,208 KB
testcase_11 AC 1,907 ms
40,972 KB
testcase_12 TLE -
testcase_13 AC 607 ms
40,576 KB
testcase_14 AC 280 ms
41,412 KB
testcase_15 AC 1,982 ms
41,352 KB
testcase_16 AC 1,950 ms
41,236 KB
testcase_17 AC 251 ms
41,204 KB
testcase_18 AC 245 ms
41,180 KB
testcase_19 AC 123 ms
41,168 KB
testcase_20 AC 116 ms
40,436 KB
testcase_21 AC 123 ms
41,164 KB
testcase_22 AC 124 ms
41,416 KB
testcase_23 AC 558 ms
41,116 KB
testcase_24 AC 110 ms
40,028 KB
testcase_25 AC 570 ms
41,220 KB
testcase_26 AC 560 ms
40,560 KB
testcase_27 AC 122 ms
41,076 KB
testcase_28 AC 126 ms
40,848 KB
testcase_29 AC 111 ms
39,880 KB
testcase_30 AC 124 ms
41,056 KB
testcase_31 AC 121 ms
41,212 KB
testcase_32 AC 123 ms
40,960 KB
testcase_33 AC 281 ms
41,188 KB
testcase_34 AC 123 ms
41,192 KB
testcase_35 AC 259 ms
41,104 KB
testcase_36 AC 108 ms
40,244 KB
testcase_37 AC 123 ms
40,980 KB
testcase_38 AC 124 ms
41,024 KB
testcase_39 AC 121 ms
40,948 KB
testcase_40 AC 120 ms
41,004 KB
testcase_41 AC 220 ms
40,976 KB
testcase_42 AC 253 ms
40,956 KB
testcase_43 AC 235 ms
82,332 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 {
			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