結果

問題 No.91 赤、緑、青の石
ユーザー agatanagatan
提出日時 2015-04-26 13:12:23
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 100,596 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 02:36:55
合計ジャッジ時間 2,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
5,248 KB
testcase_01 AC 54 ms
5,376 KB
testcase_02 AC 36 ms
5,376 KB
testcase_03 AC 65 ms
5,376 KB
testcase_04 AC 32 ms
5,376 KB
testcase_05 AC 78 ms
5,376 KB
testcase_06 AC 20 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 68 ms
5,376 KB
testcase_13 AC 76 ms
5,376 KB
testcase_14 AC 49 ms
5,376 KB
testcase_15 AC 80 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 119 ms
5,376 KB
testcase_26 AC 109 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 9 ms
5,376 KB
testcase_29 AC 21 ms
5,376 KB
testcase_30 AC 86 ms
5,376 KB
testcase_31 AC 109 ms
5,376 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