結果

問題 No.909 たぴの配置
ユーザー tentententen
提出日時 2020-12-01 10:14:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,195 ms / 3,000 ms
コード長 790 bytes
コンパイル時間 2,216 ms
コンパイル使用メモリ 75,612 KB
実行使用メモリ 72,080 KB
最終ジャッジ日時 2024-09-13 02:51:57
合計ジャッジ時間 18,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,156 KB
testcase_01 AC 130 ms
54,140 KB
testcase_02 AC 127 ms
53,840 KB
testcase_03 AC 126 ms
54,408 KB
testcase_04 AC 121 ms
53,076 KB
testcase_05 AC 1,152 ms
71,756 KB
testcase_06 AC 1,165 ms
71,232 KB
testcase_07 AC 1,104 ms
71,984 KB
testcase_08 AC 1,096 ms
71,636 KB
testcase_09 AC 1,179 ms
71,872 KB
testcase_10 AC 1,163 ms
72,052 KB
testcase_11 AC 1,155 ms
71,584 KB
testcase_12 AC 1,185 ms
71,704 KB
testcase_13 AC 1,195 ms
72,080 KB
testcase_14 AC 1,186 ms
72,020 KB
testcase_15 AC 1,145 ms
71,852 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 min = Integer.MAX_VALUE;
        int[] xArr = new int[n];
        int[] yArr = new int[n];
        for (int i = 0; i < n; i++) {
            xArr[i] = sc.nextInt();
        }
        for (int i = 0; i < n; i++) {
            yArr[i] = sc.nextInt();
            min = Math.min(min, xArr[i] + yArr[i]);
        }
        StringBuilder sb = new StringBuilder();
        sb.append(min).append("\n");
        sb.append(0).append("\n");
        for (int i = 0; i < n; i++) {
            sb.append(Math.max(min - yArr[i], 0)).append("\n");
        }
        sb.append(min).append("\n");
        System.out.print(sb);
    }
}
0