結果

問題 No.1816 MUL-DIV Game
ユーザー kokatsukokatsu
提出日時 2022-01-21 22:19:16
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 222,644 KB
実行使用メモリ 19,180 KB
最終ジャッジ日時 2024-06-22 14:07:18
合計ジャッジ時間 4,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 6 ms
6,944 KB
testcase_10 AC 31 ms
8,852 KB
testcase_11 AC 26 ms
7,716 KB
testcase_12 AC 18 ms
6,940 KB
testcase_13 AC 45 ms
10,720 KB
testcase_14 AC 22 ms
7,024 KB
testcase_15 AC 31 ms
9,816 KB
testcase_16 AC 7 ms
6,944 KB
testcase_17 AC 66 ms
15,332 KB
testcase_18 AC 58 ms
14,660 KB
testcase_19 AC 25 ms
7,744 KB
testcase_20 AC 65 ms
17,120 KB
testcase_21 AC 20 ms
7,556 KB
testcase_22 AC 15 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 77 ms
17,036 KB
testcase_26 AC 79 ms
18,344 KB
testcase_27 AC 83 ms
18,000 KB
testcase_28 AC 82 ms
17,952 KB
testcase_29 AC 76 ms
19,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

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

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

    auto rbt = A.redBlackTree!true;
    foreach (i; 0 .. N-1) {
        if (i % 2 == 0) {
            long x = rbt.front;
            rbt.removeFront;

            long y = rbt.front;
            rbt.removeFront;

            rbt.insert(x*y);
        }
        else {
            rbt.removeBack;
            rbt.removeBack;

            rbt.insert(1);
        }
    }

    rbt.front.writeln;
}
0