結果
問題 | No.437 cwwゲーム |
ユーザー | ぴろず |
提出日時 | 2016-10-28 23:33:18 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,323 bytes |
コンパイル時間 | 2,336 ms |
コンパイル使用メモリ | 78,044 KB |
実行使用メモリ | 46,800 KB |
最終ジャッジ日時 | 2024-05-03 08:12:26 |
合計ジャッジ時間 | 10,293 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
46,800 KB |
testcase_01 | AC | 126 ms
41,484 KB |
testcase_02 | AC | 190 ms
41,144 KB |
testcase_03 | AC | 131 ms
41,084 KB |
testcase_04 | AC | 126 ms
40,916 KB |
testcase_05 | AC | 442 ms
41,608 KB |
testcase_06 | AC | 395 ms
41,480 KB |
testcase_07 | AC | 555 ms
41,356 KB |
testcase_08 | AC | 287 ms
41,236 KB |
testcase_09 | AC | 572 ms
40,884 KB |
testcase_10 | AC | 565 ms
41,572 KB |
testcase_11 | AC | 542 ms
41,044 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
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(); boolean[] isCWW = new boolean[1000]; for(int i=100;i<1000;i++) { isCWW[i] = i % 111 != 0 && i % 100 % 11 == 0; } 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 (!isCWW[a[i]]) { 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; } }