結果

問題 No.91 赤、緑、青の石
ユーザー nebukuro09nebukuro09
提出日時 2016-10-14 13:50:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 118 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 77,860 KB
実行使用メモリ 78,724 KB
最終ジャッジ日時 2023-09-06 12:24:31
合計ジャッジ時間 7,544 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
78,396 KB
testcase_01 AC 218 ms
78,592 KB
testcase_02 AC 157 ms
78,476 KB
testcase_03 AC 233 ms
78,580 KB
testcase_04 AC 154 ms
78,724 KB
testcase_05 AC 258 ms
78,584 KB
testcase_06 AC 129 ms
78,560 KB
testcase_07 AC 75 ms
76,612 KB
testcase_08 AC 77 ms
76,732 KB
testcase_09 AC 76 ms
76,688 KB
testcase_10 AC 77 ms
76,692 KB
testcase_11 AC 131 ms
78,404 KB
testcase_12 AC 250 ms
78,276 KB
testcase_13 AC 280 ms
78,336 KB
testcase_14 AC 203 ms
78,316 KB
testcase_15 AC 286 ms
78,388 KB
testcase_16 AC 78 ms
76,732 KB
testcase_17 AC 78 ms
76,464 KB
testcase_18 AC 77 ms
76,520 KB
testcase_19 AC 77 ms
76,936 KB
testcase_20 AC 76 ms
76,492 KB
testcase_21 AC 77 ms
76,980 KB
testcase_22 AC 77 ms
76,544 KB
testcase_23 AC 77 ms
76,816 KB
testcase_24 AC 77 ms
76,380 KB
testcase_25 AC 387 ms
78,396 KB
testcase_26 AC 367 ms
78,320 KB
testcase_27 AC 77 ms
76,376 KB
testcase_28 AC 105 ms
78,568 KB
testcase_29 AC 135 ms
78,688 KB
testcase_30 AC 271 ms
78,548 KB
testcase_31 AC 352 ms
78,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = sorted(map(int, raw_input().split()))
while a[2] - a[0] > 2:
    a[0] += 1
    a[2] -= 2
    a.sort()
print min(a)
0