結果

問題 No.91 赤、緑、青の石
ユーザー steek79steek79
提出日時 2015-10-16 15:40:54
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 306 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 13,088 KB
最終ジャッジ日時 2024-07-21 16:50:50
合計ジャッジ時間 12,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 3,742 ms
6,812 KB
testcase_02 AC 2,315 ms
6,944 KB
testcase_03 AC 4,226 ms
6,940 KB
testcase_04 AC 2,021 ms
6,944 KB
testcase_05 TLE -
testcase_06 AC 1,379 ms
6,944 KB
testcase_07 AC 10 ms
6,944 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 1,459 ms
6,944 KB
testcase_12 AC 4,630 ms
6,940 KB
testcase_13 TLE -
testcase_14 AC 3,378 ms
6,940 KB
testcase_15 TLE -
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 9 ms
6,944 KB
testcase_18 AC 9 ms
6,944 KB
testcase_19 AC 9 ms
6,940 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 9 ms
6,940 KB
testcase_22 AC 9 ms
6,944 KB
testcase_23 AC 8 ms
6,944 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

ingre = map(int, raw_input().split())

ans = 0

while True:
    make = min(ingre)
    ans += make
    ingre = [i - make for i in ingre]    
    if min(ingre)==0:
        if sum(ingre) <3: break
        else: 
            ingre[ingre.index(max(ingre))] -= 2
            ingre[ingre.index(0)] += 1

print ans
0