結果

問題 No.909 たぴの配置
ユーザー nebukuro09nebukuro09
提出日時 2019-10-18 21:30:07
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 123 ms / 3,000 ms
コード長 696 bytes
コンパイル時間 784 ms
コンパイル使用メモリ 119,776 KB
実行使用メモリ 22,064 KB
最終ジャッジ日時 2024-06-22 02:47:16
合計ジャッジ時間 4,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 119 ms
20,812 KB
testcase_06 AC 122 ms
21,548 KB
testcase_07 AC 114 ms
21,256 KB
testcase_08 AC 118 ms
22,064 KB
testcase_09 AC 120 ms
21,188 KB
testcase_10 AC 113 ms
20,416 KB
testcase_11 AC 105 ms
14,252 KB
testcase_12 AC 118 ms
21,544 KB
testcase_13 AC 123 ms
20,648 KB
testcase_14 AC 111 ms
20,428 KB
testcase_15 AC 105 ms
14,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!int).array;
    auto B = readln.split.map!(to!int).array;

    int ans = N.iota.map!(i => A[i] + B[i]).reduce!min;
    ans.writeln;

    auto anss = new int[](N + 2);

    foreach (i; 0..N) {
        if (A[i] <= B[i]) {
            anss[i + 1] = A[i];
        } else {
            anss[i + 1] = ans - B[i];
        }
    }

    anss.back = ans;

    auto m = anss.reduce!min;

    anss.each!(a => writeln(a - m));
}
0