結果

問題 No.1231 Make a Multiple of Ten
ユーザー 37zigen37zigen
提出日時 2020-09-23 04:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 899 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 2,660 ms
コンパイル使用メモリ 76,532 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-06-27 06:18:51
合計ジャッジ時間 11,242 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,644 KB
testcase_01 AC 133 ms
41,524 KB
testcase_02 AC 134 ms
41,308 KB
testcase_03 AC 121 ms
39,976 KB
testcase_04 AC 649 ms
48,344 KB
testcase_05 AC 644 ms
48,212 KB
testcase_06 AC 468 ms
48,040 KB
testcase_07 AC 681 ms
48,928 KB
testcase_08 AC 511 ms
47,932 KB
testcase_09 AC 367 ms
47,504 KB
testcase_10 AC 668 ms
48,252 KB
testcase_11 AC 676 ms
48,336 KB
testcase_12 AC 842 ms
52,880 KB
testcase_13 AC 899 ms
54,104 KB
testcase_14 AC 133 ms
41,336 KB
testcase_15 AC 866 ms
53,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
import java.util.Stack;

class Main {
	public static void main(String[] $) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int[] dp=new int[10];
		Arrays.fill(dp, -N);
		dp[0]=0;
		for (int i=0;i<N;++i) {
			int a=sc.nextInt()%10;
			int[] ndp=Arrays.copyOf(dp, dp.length);
			for (int j=0;j<10;++j) {
				ndp[(j+a)%10]=Math.max(ndp[(j+a)%10], dp[j]+1);
			}
			dp=ndp;
		}
		System.out.println(dp[0]);
		
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0