結果

問題 No.1231 Make a Multiple of Ten
ユーザー 37zigen37zigen
提出日時 2020-09-23 04:30:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 2,644 ms
コンパイル使用メモリ 75,924 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-06-27 06:15:40
合計ジャッジ時間 11,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,480 KB
testcase_01 AC 130 ms
41,084 KB
testcase_02 AC 130 ms
41,156 KB
testcase_03 AC 131 ms
41,560 KB
testcase_04 AC 640 ms
48,204 KB
testcase_05 AC 638 ms
48,272 KB
testcase_06 AC 461 ms
48,012 KB
testcase_07 AC 669 ms
48,764 KB
testcase_08 AC 492 ms
48,152 KB
testcase_09 AC 353 ms
47,476 KB
testcase_10 AC 607 ms
47,904 KB
testcase_11 AC 705 ms
48,360 KB
testcase_12 AC 838 ms
52,032 KB
testcase_13 AC 886 ms
54,004 KB
testcase_14 AC 130 ms
41,480 KB
testcase_15 AC 764 ms
54,236 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-10);
		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