結果

問題 No.437 cwwゲーム
ユーザー ぴろずぴろず
提出日時 2016-10-28 22:53:14
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,242 bytes
コンパイル時間 2,437 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 82,548 KB
最終ジャッジ日時 2024-11-24 06:08:56
合計ジャッジ時間 16,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
45,448 KB
testcase_01 AC 124 ms
40,864 KB
testcase_02 AC 200 ms
41,568 KB
testcase_03 AC 127 ms
41,072 KB
testcase_04 AC 128 ms
40,976 KB
testcase_05 AC 495 ms
41,116 KB
testcase_06 AC 412 ms
41,048 KB
testcase_07 AC 613 ms
41,372 KB
testcase_08 AC 318 ms
41,168 KB
testcase_09 AC 588 ms
40,420 KB
testcase_10 AC 595 ms
41,008 KB
testcase_11 AC 558 ms
41,512 KB
testcase_12 TLE -
testcase_13 AC 258 ms
41,148 KB
testcase_14 AC 179 ms
41,284 KB
testcase_15 AC 598 ms
41,236 KB
testcase_16 AC 490 ms
41,620 KB
testcase_17 AC 184 ms
41,152 KB
testcase_18 AC 165 ms
41,100 KB
testcase_19 AC 115 ms
40,200 KB
testcase_20 WA -
testcase_21 AC 127 ms
41,224 KB
testcase_22 AC 126 ms
41,128 KB
testcase_23 AC 256 ms
40,944 KB
testcase_24 AC 127 ms
40,868 KB
testcase_25 AC 280 ms
41,124 KB
testcase_26 AC 277 ms
41,204 KB
testcase_27 AC 127 ms
40,808 KB
testcase_28 AC 127 ms
40,976 KB
testcase_29 AC 111 ms
39,988 KB
testcase_30 AC 124 ms
41,184 KB
testcase_31 AC 117 ms
40,548 KB
testcase_32 AC 127 ms
41,396 KB
testcase_33 AC 181 ms
41,164 KB
testcase_34 AC 113 ms
40,296 KB
testcase_35 AC 187 ms
41,124 KB
testcase_36 AC 127 ms
41,228 KB
testcase_37 AC 125 ms
40,956 KB
testcase_38 AC 124 ms
40,996 KB
testcase_39 AC 123 ms
41,120 KB
testcase_40 AC 125 ms
41,044 KB
testcase_41 AC 181 ms
41,276 KB
testcase_42 AC 182 ms
41,340 KB
testcase_43 AC 164 ms
82,548 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;
		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 (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