結果
問題 | No.1077 Noelちゃんと星々4 |
ユーザー | tenten |
提出日時 | 2024-01-25 15:21:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 149 ms / 2,000 ms |
コード長 | 1,841 bytes |
コンパイル時間 | 2,318 ms |
コンパイル使用メモリ | 87,128 KB |
実行使用メモリ | 78,692 KB |
最終ジャッジ日時 | 2024-09-28 07:20:43 |
合計ジャッジ時間 | 5,610 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
38,372 KB |
testcase_01 | AC | 68 ms
38,372 KB |
testcase_02 | AC | 126 ms
66,272 KB |
testcase_03 | AC | 137 ms
74,872 KB |
testcase_04 | AC | 100 ms
50,504 KB |
testcase_05 | AC | 99 ms
50,524 KB |
testcase_06 | AC | 113 ms
54,868 KB |
testcase_07 | AC | 112 ms
54,756 KB |
testcase_08 | AC | 107 ms
54,668 KB |
testcase_09 | AC | 101 ms
50,212 KB |
testcase_10 | AC | 139 ms
75,520 KB |
testcase_11 | AC | 124 ms
66,260 KB |
testcase_12 | AC | 116 ms
57,744 KB |
testcase_13 | AC | 95 ms
46,100 KB |
testcase_14 | AC | 139 ms
74,652 KB |
testcase_15 | AC | 114 ms
56,700 KB |
testcase_16 | AC | 107 ms
54,708 KB |
testcase_17 | AC | 121 ms
65,608 KB |
testcase_18 | AC | 149 ms
74,520 KB |
testcase_19 | AC | 94 ms
46,000 KB |
testcase_20 | AC | 58 ms
37,700 KB |
testcase_21 | AC | 142 ms
78,692 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int[][] dp = new int[n + 1][10001]; for (int i = 1; i <= n; i++) { int min = Integer.MAX_VALUE; int x = sc.nextInt(); for (int j = 0; j <= 10000; j++) { min = Math.min(min, dp[i - 1][j]); dp[i][j] = min + Math.abs(x - j); } } System.out.println(Arrays.stream(dp[n]).min().getAsInt()); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }