結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | tenten |
提出日時 | 2020-09-24 21:54:44 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 2,537 ms |
コンパイル使用メモリ | 74,068 KB |
実行使用メモリ | 66,796 KB |
最終ジャッジ日時 | 2024-06-28 05:25:52 |
合計ジャッジ時間 | 6,812 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
46,604 KB |
testcase_01 | AC | 129 ms
40,968 KB |
testcase_02 | AC | 133 ms
41,304 KB |
testcase_03 | AC | 113 ms
40,068 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); boolean[][] exists = new boolean[n + 1][10]; exists[0][0] = true; int max = 0; for (int i = 1; i <= n; i++) { int x = sc.nextInt() % 10; for (int j = i - 1; j >= 0 && j + 1 + (n - i + 1) > max; j--) { for (int k = 0; k < 10; k++) { if (exists[j][k]) { exists[j + 1][(k + x) % 10] = true; } } if (exists[j + 1][0]) { max = Math.max(max, j + 1); } } } System.out.println(max); } }