結果

問題 No.91 赤、緑、青の石
ユーザー JunOnumaJunOnuma
提出日時 2017-06-16 11:34:16
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,284 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-24 07:08:04
合計ジャッジ時間 23,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,569 ms
6,144 KB
testcase_01 AC 1,033 ms
6,144 KB
testcase_02 AC 626 ms
6,272 KB
testcase_03 AC 1,163 ms
6,272 KB
testcase_04 AC 557 ms
6,272 KB
testcase_05 AC 1,365 ms
6,144 KB
testcase_06 AC 146 ms
6,272 KB
testcase_07 AC 11 ms
6,272 KB
testcase_08 AC 11 ms
6,272 KB
testcase_09 AC 11 ms
6,144 KB
testcase_10 AC 11 ms
6,272 KB
testcase_11 AC 390 ms
6,272 KB
testcase_12 AC 1,277 ms
6,144 KB
testcase_13 AC 1,430 ms
6,272 KB
testcase_14 AC 922 ms
6,272 KB
testcase_15 AC 1,509 ms
6,272 KB
testcase_16 AC 11 ms
6,272 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 AC 11 ms
6,400 KB
testcase_20 AC 11 ms
6,272 KB
testcase_21 AC 12 ms
6,272 KB
testcase_22 AC 11 ms
6,272 KB
testcase_23 AC 11 ms
6,144 KB
testcase_24 AC 11 ms
6,272 KB
testcase_25 AC 2,284 ms
6,272 KB
testcase_26 AC 2,128 ms
6,272 KB
testcase_27 AC 11 ms
6,272 KB
testcase_28 AC 10 ms
6,272 KB
testcase_29 AC 29 ms
6,272 KB
testcase_30 AC 1,482 ms
6,272 KB
testcase_31 AC 2,051 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = sorted(map(int, raw_input().split()))
s = l[0]
l = map(lambda x:x-s, l)
while l[1] > 0 and l[2] > 2:
    s += 1
    l[1] -= 1
    l[2] -= 3
    l.sort()
s += l[2] / 5
print s
0