結果

問題 No.1231 Make a Multiple of Ten
ユーザー tentententen
提出日時 2020-09-24 22:05:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,005 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 2,079 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 70,424 KB
最終ジャッジ日時 2024-06-28 05:26:51
合計ジャッジ時間 11,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,196 KB
testcase_01 AC 128 ms
41,024 KB
testcase_02 AC 128 ms
41,404 KB
testcase_03 AC 129 ms
41,168 KB
testcase_04 AC 688 ms
55,012 KB
testcase_05 AC 664 ms
54,220 KB
testcase_06 AC 443 ms
49,604 KB
testcase_07 AC 732 ms
55,304 KB
testcase_08 AC 513 ms
51,672 KB
testcase_09 AC 348 ms
48,356 KB
testcase_10 AC 661 ms
54,664 KB
testcase_11 AC 630 ms
55,840 KB
testcase_12 AC 913 ms
67,664 KB
testcase_13 AC 1,005 ms
69,696 KB
testcase_14 AC 135 ms
41,152 KB
testcase_15 AC 982 ms
70,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[][] dp = new int[n + 1][10];
    	Arrays.fill(dp[0], -1);
    	dp[0][0] = 0;
    	for (int i = 1; i <= n; i++) {
    	    int x = sc.nextInt() % 10;
    	    for (int j = 0; j < 10; j++) {
    	        dp[i][j] = dp[i - 1][j];
    	    }
    	    for (int j = 0; j < 10; j++) {
    	        if (dp[i - 1][j] >= 0) {
    	            dp[i][(j + x) % 10] = Math.max(dp[i][(j + x) % 10], dp[i - 1][j] + 1);
    	        }
    	    }
    	}
    	System.out.println(dp[n][0]);
	}
}
0