結果

問題 No.2196 Pair Bonus
ユーザー kokatsukokatsu
提出日時 2023-01-22 20:05:01
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 209,848 KB
実行使用メモリ 18,728 KB
最終ジャッジ日時 2024-06-22 17:21:04
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 104 ms
18,728 KB
testcase_04 AC 102 ms
18,624 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 20 ms
7,440 KB
testcase_09 AC 97 ms
18,696 KB
testcase_10 AC 64 ms
14,728 KB
testcase_11 AC 24 ms
8,948 KB
testcase_12 AC 85 ms
17,352 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 10 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 84 ms
18,280 KB
testcase_17 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N;
    readf("%d\n", N);

    auto A = readln.chomp.split.to!(long[]);
    auto B = readln.chomp.split.to!(long[]);
    auto X = readln.chomp.split.to!(long[]);
    auto Y = readln.chomp.split.to!(long[]);

    long res;
    foreach (i; 0 .. N) {
        long p = i * 2, q = i * 2 + 1;
        res += max(A[p]+A[q]+X[i], A[p]+B[q]+Y[i], B[p]+A[q]+Y[i], B[p]+B[q]+X[i]);
    }

    res.writeln;
}
0