結果

問題 No.91 赤、緑、青の石
ユーザー JunOnumaJunOnuma
提出日時 2017-06-16 11:32:59
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-10-01 06:42:05
合計ジャッジ時間 17,408 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 766 ms
6,272 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 111 ms
6,272 KB
testcase_07 AC 10 ms
6,016 KB
testcase_08 AC 9 ms
6,272 KB
testcase_09 WA -
testcase_10 AC 9 ms
6,272 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,062 ms
6,272 KB
testcase_14 AC 680 ms
6,144 KB
testcase_15 AC 1,148 ms
6,272 KB
testcase_16 AC 10 ms
6,144 KB
testcase_17 AC 9 ms
6,144 KB
testcase_18 AC 9 ms
6,144 KB
testcase_19 AC 9 ms
6,272 KB
testcase_20 AC 8 ms
6,144 KB
testcase_21 AC 8 ms
6,144 KB
testcase_22 AC 9 ms
6,272 KB
testcase_23 AC 9 ms
6,272 KB
testcase_24 AC 8 ms
6,272 KB
testcase_25 AC 1,704 ms
6,272 KB
testcase_26 WA -
testcase_27 AC 9 ms
6,272 KB
testcase_28 AC 9 ms
6,272 KB
testcase_29 AC 22 ms
6,144 KB
testcase_30 AC 1,118 ms
6,144 KB
testcase_31 AC 1,529 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:
    s += 1
    l[1] -= 1
    l[2] -= 3
    l.sort()
s += l[2] / 5
print s
0