結果

問題 No.91 赤、緑、青の石
コンテスト
ユーザー matsu7874
提出日時 2015-10-28 13:25:37
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 1,384 ms / 5,000 ms
+ 977µs
コード長 330 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 286 ms
コンパイル使用メモリ 21,408 KB
実行使用メモリ 15,868 KB
最終ジャッジ日時 2026-07-19 04:22:50
合計ジャッジ時間 18,123 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

s = list(map(int, input().split()))
s.sort()
total = s[0]
for i in range(3):
    s[i] -= total
while s[1] > 0 and s[2] > 0 and (s[1] > 2 or s[2] > 2):
    if s[1] > s[2]:
        total += 1
        s[1] -= 3
        s[2] -= 1
    else:
        total += 1
        s[1] -= 1
        s[2] -= 3
s.sort()
total += s[2]//5
print(total)
0