結果
問題 | No.437 cwwゲーム |
ユーザー | ぴろず |
提出日時 | 2016-10-28 22:40:56 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,129 bytes |
コンパイル時間 | 1,860 ms |
コンパイル使用メモリ | 78,120 KB |
実行使用メモリ | 61,064 KB |
最終ジャッジ日時 | 2024-05-03 07:42:14 |
合計ジャッジ時間 | 18,783 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
59,644 KB |
testcase_01 | AC | 119 ms
54,116 KB |
testcase_02 | AC | 261 ms
53,940 KB |
testcase_03 | AC | 118 ms
53,996 KB |
testcase_04 | AC | 108 ms
53,896 KB |
testcase_05 | AC | 1,892 ms
54,168 KB |
testcase_06 | AC | 1,659 ms
53,592 KB |
testcase_07 | AC | 1,834 ms
54,304 KB |
testcase_08 | AC | 1,554 ms
53,564 KB |
testcase_09 | AC | 1,824 ms
53,824 KB |
testcase_10 | AC | 1,878 ms
54,716 KB |
testcase_11 | AC | 1,750 ms
54,312 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(); 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; } }