結果

問題 No.1160 Strange Bowling
ユーザー kokatsukokatsu
提出日時 2022-01-10 21:31:16
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 206,664 KB
実行使用メモリ 10,004 KB
最終ジャッジ日時 2024-06-22 14:01:40
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 42 ms
8,784 KB
testcase_11 AC 24 ms
6,940 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 41 ms
7,624 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 13 ms
6,944 KB
testcase_17 AC 38 ms
10,004 KB
testcase_18 AC 27 ms
6,940 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 25 ms
6,940 KB
testcase_22 AC 8 ms
6,944 KB
testcase_23 AC 8 ms
6,944 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 18 ms
6,940 KB
testcase_26 AC 9 ms
6,944 KB
testcase_27 AC 26 ms
6,944 KB
testcase_28 AC 10 ms
6,940 KB
testcase_29 AC 37 ms
7,688 KB
testcase_30 AC 58 ms
9,172 KB
testcase_31 AC 34 ms
8,312 KB
testcase_32 AC 11 ms
6,940 KB
testcase_33 AC 24 ms
7,276 KB
testcase_34 AC 23 ms
6,940 KB
testcase_35 AC 52 ms
9,852 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

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

    auto p = new long[](N), a = new long[](N);
    foreach (i; 0 .. N) {
        readf("%d %d\n", p[i], a[i]);
    }

    auto dp = new long[][](N+1, 2);
    dp[1][0] = p[0], dp[1][1] = a[0];
    foreach (i; 1 .. N) {
        dp[i+1][0] = max(dp[i][0]+p[i], dp[i][1]+p[i]*2);
        dp[i+1][1] = max(dp[i][0]+a[i], dp[i][1]+a[i]*2);
    }

    dp[N][0].writeln;
}
0