結果

問題 No.91 赤、緑、青の石
ユーザー pluto77pluto77
提出日時 2016-03-09 10:42:15
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 183 bytes
コンパイル時間 1,279 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2024-06-24 06:56:27
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
76,216 KB
testcase_01 AC 108 ms
76,172 KB
testcase_02 AC 99 ms
76,456 KB
testcase_03 AC 106 ms
76,568 KB
testcase_04 AC 94 ms
76,192 KB
testcase_05 AC 100 ms
76,544 KB
testcase_06 AC 87 ms
76,672 KB
testcase_07 AC 78 ms
75,904 KB
testcase_08 AC 88 ms
75,648 KB
testcase_09 AC 85 ms
75,904 KB
testcase_10 AC 83 ms
75,776 KB
testcase_11 AC 90 ms
76,828 KB
testcase_12 AC 103 ms
76,200 KB
testcase_13 AC 107 ms
76,416 KB
testcase_14 AC 95 ms
76,160 KB
testcase_15 AC 104 ms
76,844 KB
testcase_16 AC 82 ms
75,264 KB
testcase_17 AC 87 ms
75,648 KB
testcase_18 AC 81 ms
75,532 KB
testcase_19 AC 81 ms
75,648 KB
testcase_20 AC 80 ms
75,392 KB
testcase_21 AC 86 ms
75,776 KB
testcase_22 AC 81 ms
75,284 KB
testcase_23 AC 86 ms
75,776 KB
testcase_24 AC 83 ms
75,900 KB
testcase_25 AC 112 ms
76,416 KB
testcase_26 AC 110 ms
76,416 KB
testcase_27 AC 87 ms
75,296 KB
testcase_28 AC 86 ms
75,264 KB
testcase_29 AC 88 ms
76,308 KB
testcase_30 AC 102 ms
76,288 KB
testcase_31 AC 110 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_91

a=map(int,raw_input().split())
a.sort()
x,y,z=a
res=x
y=y-x
z=z-x

x=y
y=z
while x>=1 and y>=3:
 res+=1
 x-=1
 y-=3
 if y<x:
  x,y=y,x
res=res+y/5
print res
0