結果

問題 No.91 赤、緑、青の石
ユーザー agatanagatan
提出日時 2015-04-26 13:12:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 87,536 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-09-02 20:14:33
合計ジャッジ時間 3,289 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
4,368 KB
testcase_01 AC 63 ms
4,372 KB
testcase_02 AC 43 ms
4,368 KB
testcase_03 AC 77 ms
4,368 KB
testcase_04 AC 37 ms
4,372 KB
testcase_05 AC 93 ms
4,368 KB
testcase_06 AC 23 ms
4,368 KB
testcase_07 AC 1 ms
4,368 KB
testcase_08 AC 1 ms
4,368 KB
testcase_09 AC 1 ms
4,368 KB
testcase_10 AC 1 ms
4,368 KB
testcase_11 AC 27 ms
4,372 KB
testcase_12 AC 82 ms
4,368 KB
testcase_13 AC 90 ms
4,372 KB
testcase_14 AC 60 ms
4,368 KB
testcase_15 AC 98 ms
4,372 KB
testcase_16 AC 2 ms
4,372 KB
testcase_17 AC 1 ms
4,372 KB
testcase_18 AC 2 ms
4,368 KB
testcase_19 AC 1 ms
4,372 KB
testcase_20 AC 1 ms
4,372 KB
testcase_21 AC 1 ms
4,368 KB
testcase_22 AC 1 ms
4,368 KB
testcase_23 AC 1 ms
4,372 KB
testcase_24 AC 1 ms
4,372 KB
testcase_25 AC 147 ms
4,368 KB
testcase_26 AC 132 ms
4,372 KB
testcase_27 AC 1 ms
4,372 KB
testcase_28 AC 11 ms
4,372 KB
testcase_29 AC 25 ms
4,368 KB
testcase_30 AC 101 ms
4,368 KB
testcase_31 AC 129 ms
4,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.array, std.stdio, std.string, std.algorithm, std.conv;


void main()
{
    auto inp = readln.split.map!(to!long).array;
    long cnt = min(inp[0], inp[1], inp[2]);
    foreach (ref i; inp) {
        i -= cnt;
    }
    while(!inp.all!"a < 3") {
        long m = inp.reduce!max;
        foreach (ref i; inp) {
            if (i == 0) {
                i += 1;
                break ;
            }
        }
        foreach (ref i; inp) {
            if (i == m) {
                i -= 2;
                break ;
            }
        }
        if (inp.all!"a > 0") {
            cnt++;
            foreach(ref i; inp) {
                i--;
            }
        }
    }
    writeln(cnt);
}
0