結果

問題 No.91 赤、緑、青の石
ユーザー 👑 rin204rin204
提出日時 2022-01-20 10:21:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 5,000 ms
コード長 233 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 75,568 KB
最終ジャッジ日時 2024-06-24 07:32:48
合計ジャッジ時間 5,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
75,064 KB
testcase_01 AC 191 ms
75,388 KB
testcase_02 AC 132 ms
75,568 KB
testcase_03 AC 201 ms
75,168 KB
testcase_04 AC 123 ms
74,860 KB
testcase_05 AC 226 ms
75,376 KB
testcase_06 AC 98 ms
75,092 KB
testcase_07 AC 37 ms
52,696 KB
testcase_08 AC 38 ms
52,392 KB
testcase_09 AC 37 ms
52,456 KB
testcase_10 AC 37 ms
52,136 KB
testcase_11 AC 97 ms
75,028 KB
testcase_12 AC 213 ms
75,280 KB
testcase_13 AC 242 ms
74,728 KB
testcase_14 AC 165 ms
75,132 KB
testcase_15 AC 249 ms
75,208 KB
testcase_16 AC 37 ms
52,144 KB
testcase_17 AC 37 ms
52,632 KB
testcase_18 AC 38 ms
53,560 KB
testcase_19 AC 37 ms
52,272 KB
testcase_20 AC 37 ms
52,952 KB
testcase_21 AC 37 ms
52,904 KB
testcase_22 AC 37 ms
52,744 KB
testcase_23 AC 37 ms
51,996 KB
testcase_24 AC 37 ms
51,752 KB
testcase_25 AC 352 ms
74,728 KB
testcase_26 AC 328 ms
75,240 KB
testcase_27 AC 36 ms
53,248 KB
testcase_28 AC 73 ms
74,992 KB
testcase_29 AC 101 ms
75,156 KB
testcase_30 AC 236 ms
75,348 KB
testcase_31 AC 320 ms
75,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

rgb = list(map(int, input().split()))
rgb.sort()
ans = 0
while 1:
    x = rgb[0]
    ans += x
    rgb[0] -= x
    rgb[1] -= x
    rgb[2] -= x
    if rgb[2] <= 2:
        break
    rgb[0] += 1
    rgb[2] -= 2
    rgb.sort()
print(ans)
0