結果

問題 No.91 赤、緑、青の石
ユーザー flippergoflippergo
提出日時 2020-12-28 18:11:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 53,824 KB
最終ジャッジ日時 2024-06-24 07:30:27
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 38 ms
53,688 KB
testcase_02 AC 38 ms
53,624 KB
testcase_03 AC 38 ms
52,532 KB
testcase_04 AC 38 ms
53,212 KB
testcase_05 AC 39 ms
52,768 KB
testcase_06 AC 38 ms
53,448 KB
testcase_07 AC 38 ms
53,824 KB
testcase_08 AC 38 ms
53,076 KB
testcase_09 AC 38 ms
52,592 KB
testcase_10 AC 38 ms
52,648 KB
testcase_11 AC 37 ms
53,104 KB
testcase_12 AC 39 ms
53,140 KB
testcase_13 AC 38 ms
52,884 KB
testcase_14 AC 38 ms
52,640 KB
testcase_15 AC 37 ms
52,400 KB
testcase_16 AC 36 ms
52,820 KB
testcase_17 AC 39 ms
52,400 KB
testcase_18 AC 38 ms
53,008 KB
testcase_19 AC 38 ms
53,712 KB
testcase_20 AC 39 ms
52,004 KB
testcase_21 AC 39 ms
52,792 KB
testcase_22 AC 38 ms
52,332 KB
testcase_23 AC 38 ms
53,684 KB
testcase_24 AC 38 ms
53,424 KB
testcase_25 AC 39 ms
52,728 KB
testcase_26 AC 39 ms
52,884 KB
testcase_27 AC 38 ms
53,564 KB
testcase_28 AC 37 ms
52,928 KB
testcase_29 AC 37 ms
52,004 KB
testcase_30 AC 39 ms
53,264 KB
testcase_31 AC 38 ms
53,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,G,B = map(int,input().split())
high = 10**7+1
low = 0
while high-low>1:
    mid = (high+low)//2
    x,y,z = R,G,B
    x -= mid
    y -= mid
    z -= mid
    if x<0 and y<0 and z<0:
        high = mid
        continue
    x,y,z = sorted([x,y,z])
    if y>=0:
        cnt = y//2+z//2
        if x+cnt>=0:
            low = mid
            continue
        high = mid
        continue
    else:
        if x+y+z//2>=0:
            low = mid
            continue
        high = mid
        continue
print(low)
0