結果

問題 No.91 赤、緑、青の石
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-18 13:21:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 610 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,260 KB
最終ジャッジ日時 2024-06-24 07:00:04
合計ジャッジ時間 7,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
75,008 KB
testcase_01 AC 294 ms
75,008 KB
testcase_02 AC 196 ms
74,880 KB
testcase_03 AC 318 ms
75,008 KB
testcase_04 AC 182 ms
75,136 KB
testcase_05 AC 371 ms
75,260 KB
testcase_06 AC 124 ms
75,036 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 141 ms
75,008 KB
testcase_12 AC 351 ms
74,988 KB
testcase_13 AC 376 ms
74,880 KB
testcase_14 AC 261 ms
74,752 KB
testcase_15 AC 405 ms
75,136 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 41 ms
52,096 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 41 ms
51,584 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 41 ms
51,840 KB
testcase_25 AC 610 ms
74,752 KB
testcase_26 AC 569 ms
74,624 KB
testcase_27 AC 40 ms
52,424 KB
testcase_28 AC 86 ms
75,008 KB
testcase_29 AC 127 ms
75,136 KB
testcase_30 AC 417 ms
75,008 KB
testcase_31 AC 559 ms
74,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3


def in_place_compute(stones):
    ans = 0
    stones.sort()
    ans += stones[0]
    stones[1] -= stones[0]
    stones[2] -= stones[0]
    stones[0] -= stones[0]
    while stones[2] >= 2:
        stones.sort()
        stones[2] -= 2
        stones[0] += 1
        if not (stones[1] and stones[2]):
            continue
        ans += stones[0]
        stones[1] -= stones[0]
        stones[2] -= stones[0]
        stones[0] -= stones[0]
        stones.sort()
    return ans


def main():
    stones = list(map(int, input().split()))
    print(in_place_compute(stones))


if __name__ == '__main__':
    main()
0