結果

問題 No.91 赤、緑、青の石
ユーザー akanayaakanaya
提出日時 2020-03-31 14:59:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 5,000 ms
コード長 203 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 75,744 KB
最終ジャッジ日時 2024-06-24 07:25:49
合計ジャッジ時間 6,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
75,680 KB
testcase_01 AC 217 ms
75,448 KB
testcase_02 AC 144 ms
75,460 KB
testcase_03 AC 230 ms
75,436 KB
testcase_04 AC 135 ms
75,444 KB
testcase_05 AC 258 ms
75,392 KB
testcase_06 AC 109 ms
75,380 KB
testcase_07 AC 37 ms
51,680 KB
testcase_08 AC 36 ms
52,268 KB
testcase_09 AC 37 ms
53,620 KB
testcase_10 AC 36 ms
52,432 KB
testcase_11 AC 108 ms
75,368 KB
testcase_12 AC 244 ms
75,488 KB
testcase_13 AC 280 ms
75,328 KB
testcase_14 AC 199 ms
75,372 KB
testcase_15 AC 289 ms
75,744 KB
testcase_16 AC 36 ms
51,872 KB
testcase_17 AC 36 ms
52,176 KB
testcase_18 AC 36 ms
52,884 KB
testcase_19 AC 37 ms
52,348 KB
testcase_20 AC 37 ms
52,424 KB
testcase_21 AC 37 ms
52,308 KB
testcase_22 AC 36 ms
52,496 KB
testcase_23 AC 37 ms
53,836 KB
testcase_24 AC 37 ms
52,392 KB
testcase_25 AC 417 ms
75,160 KB
testcase_26 AC 385 ms
75,328 KB
testcase_27 AC 38 ms
52,832 KB
testcase_28 AC 80 ms
75,160 KB
testcase_29 AC 115 ms
75,640 KB
testcase_30 AC 291 ms
75,684 KB
testcase_31 AC 370 ms
75,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

rgb = list(map(int, input().split(' ')))

df = float('inf')
while(True):
    rgb = sorted(rgb)
    df = rgb[2] - rgb[0]
    if df < 2:
        break
    rgb[2] -= 2
    rgb[0] += 1
    
print(min(rgb))

0