結果

問題 No.91 赤、緑、青の石
ユーザー flippergoflippergo
提出日時 2020-12-28 17:56:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 536 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,164 KB
最終ジャッジ日時 2024-10-03 08:34:23
合計ジャッジ時間 12,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 3,654 ms
76,044 KB
testcase_02 AC 2,082 ms
76,024 KB
testcase_03 AC 3,999 ms
75,920 KB
testcase_04 AC 1,856 ms
75,668 KB
testcase_05 AC 4,663 ms
75,796 KB
testcase_06 AC 527 ms
75,436 KB
testcase_07 AC 34 ms
53,076 KB
testcase_08 AC 32 ms
53,684 KB
testcase_09 AC 33 ms
52,884 KB
testcase_10 AC 34 ms
53,688 KB
testcase_11 AC 1,302 ms
76,164 KB
testcase_12 AC 4,268 ms
75,556 KB
testcase_13 AC 4,915 ms
75,636 KB
testcase_14 AC 3,081 ms
75,700 KB
testcase_15 TLE -
testcase_16 AC 33 ms
54,028 KB
testcase_17 AC 32 ms
53,008 KB
testcase_18 AC 34 ms
53,244 KB
testcase_19 AC 34 ms
53,112 KB
testcase_20 AC 38 ms
53,480 KB
testcase_21 AC 39 ms
52,672 KB
testcase_22 AC 39 ms
52,520 KB
testcase_23 AC 34 ms
54,344 KB
testcase_24 AC 38 ms
55,064 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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
    cmin = min(x,y,z)
    cnt = cmin
    x -= cmin
    y -= cmin
    z -= cmin
    x,y,z = sorted([x,y,z])
    while z>=3:
        if y==0:
            k = z//5
            cnt += k
            z -= 5*k
            break
        z -= 2
        x += 1
        cnt += 1
        x -= 1
        y -= 1
        z -= 1
        x,y,z = sorted([x,y,z])
    if cnt>=mid:
        low = mid
    else:
        high = mid
print(low)
0