結果

問題 No.91 赤、緑、青の石
ユーザー nebukuro09nebukuro09
提出日時 2016-10-14 13:50:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 396 ms / 5,000 ms
コード長 118 bytes
コンパイル時間 1,456 ms
コンパイル使用メモリ 76,712 KB
実行使用メモリ 77,588 KB
最終ジャッジ日時 2024-06-24 07:01:24
合計ジャッジ時間 7,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
76,956 KB
testcase_01 AC 232 ms
77,112 KB
testcase_02 AC 169 ms
76,972 KB
testcase_03 AC 244 ms
77,588 KB
testcase_04 AC 164 ms
77,060 KB
testcase_05 AC 273 ms
77,080 KB
testcase_06 AC 140 ms
77,092 KB
testcase_07 AC 86 ms
75,540 KB
testcase_08 AC 83 ms
75,436 KB
testcase_09 AC 86 ms
75,388 KB
testcase_10 AC 91 ms
75,560 KB
testcase_11 AC 142 ms
77,080 KB
testcase_12 AC 254 ms
77,328 KB
testcase_13 AC 288 ms
77,220 KB
testcase_14 AC 208 ms
77,316 KB
testcase_15 AC 294 ms
77,200 KB
testcase_16 AC 83 ms
75,428 KB
testcase_17 AC 88 ms
75,388 KB
testcase_18 AC 84 ms
75,644 KB
testcase_19 AC 88 ms
75,532 KB
testcase_20 AC 88 ms
75,804 KB
testcase_21 AC 86 ms
75,796 KB
testcase_22 AC 85 ms
75,804 KB
testcase_23 AC 82 ms
75,400 KB
testcase_24 AC 87 ms
75,916 KB
testcase_25 AC 396 ms
76,944 KB
testcase_26 AC 380 ms
76,944 KB
testcase_27 AC 86 ms
75,400 KB
testcase_28 AC 114 ms
77,112 KB
testcase_29 AC 144 ms
77,348 KB
testcase_30 AC 279 ms
77,172 KB
testcase_31 AC 366 ms
77,060 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