結果

問題 No.909 たぴの配置
ユーザー ks2mks2m
提出日時 2019-10-18 21:31:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,158 ms / 3,000 ms
コード長 804 bytes
コンパイル時間 2,490 ms
コンパイル使用メモリ 76,516 KB
実行使用メモリ 72,844 KB
最終ジャッジ日時 2024-06-25 15:01:55
合計ジャッジ時間 16,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,060 KB
testcase_01 AC 55 ms
37,016 KB
testcase_02 AC 54 ms
37,204 KB
testcase_03 AC 55 ms
36,700 KB
testcase_04 AC 55 ms
36,916 KB
testcase_05 AC 1,158 ms
72,556 KB
testcase_06 AC 1,144 ms
72,640 KB
testcase_07 AC 1,103 ms
72,288 KB
testcase_08 AC 1,082 ms
72,340 KB
testcase_09 AC 1,101 ms
72,844 KB
testcase_10 AC 1,011 ms
72,380 KB
testcase_11 AC 1,060 ms
72,432 KB
testcase_12 AC 1,079 ms
70,968 KB
testcase_13 AC 1,115 ms
72,768 KB
testcase_14 AC 1,049 ms
72,268 KB
testcase_15 AC 1,075 ms
72,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] x = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		int[] y = new int[n];
		for (int i = 0; i < n; i++) {
			y[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int ans = 100000000;
		for (int i = 0; i < n; i++) {
			ans = Math.min(ans, x[i] + y[i]);
		}
		System.out.println(ans);
		System.out.println(0);
		for (int i = 0; i < n; i++) {
			System.out.println(Math.min(x[i], ans));
		}
		System.out.println(ans);
	}
}
0