結果

問題 No.909 たぴの配置
ユーザー htensaihtensai
提出日時 2019-11-11 08:31:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,242 ms / 3,000 ms
コード長 775 bytes
コンパイル時間 2,524 ms
コンパイル使用メモリ 84,364 KB
実行使用メモリ 63,972 KB
最終ジャッジ日時 2024-09-15 05:08:53
合計ジャッジ時間 18,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,176 KB
testcase_01 AC 131 ms
41,084 KB
testcase_02 AC 129 ms
41,112 KB
testcase_03 AC 131 ms
40,912 KB
testcase_04 AC 130 ms
41,216 KB
testcase_05 AC 1,206 ms
61,268 KB
testcase_06 AC 1,220 ms
60,932 KB
testcase_07 AC 1,172 ms
61,044 KB
testcase_08 AC 1,242 ms
63,972 KB
testcase_09 AC 1,175 ms
63,276 KB
testcase_10 AC 1,151 ms
61,692 KB
testcase_11 AC 1,135 ms
61,272 KB
testcase_12 AC 1,049 ms
60,416 KB
testcase_13 AC 1,132 ms
62,168 KB
testcase_14 AC 1,167 ms
61,944 KB
testcase_15 AC 1,189 ms
63,184 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[] arrX = new int[n];
		int[] arrY = new int[n];
		int[] ans = new int[n];
		for (int i = 0; i < n; i++) {
		    arrX[i] = sc.nextInt();
		}
		int min = Integer.MAX_VALUE;
		for (int i = 0; i < n; i++) {
		    arrY[i] = sc.nextInt();
		    min = Math.min(min, arrX[i] + arrY[i]);
		}
		StringBuilder sb = new StringBuilder();
		sb.append(min).append("\n");
		sb.append(0).append("\n");
		for (int i = 0; i < n; i++) {
		    if (min >= arrX[i]) {
		        ans[i] = arrX[i];
		    } else {
		        ans[i] = min;
		    }
		    sb.append(ans[i]).append("\n");
		}
		sb.append(min).append("\n");
		System.out.print(sb);
	}
}
0