結果

問題 No.91 赤、緑、青の石
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-11 06:08:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 53,780 KB
最終ジャッジ日時 2024-06-24 07:29:34
合計ジャッジ時間 2,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,012 KB
testcase_01 AC 44 ms
52,584 KB
testcase_02 AC 43 ms
52,724 KB
testcase_03 AC 44 ms
52,816 KB
testcase_04 AC 43 ms
52,080 KB
testcase_05 AC 44 ms
53,136 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 38 ms
52,552 KB
testcase_08 AC 43 ms
52,488 KB
testcase_09 AC 37 ms
53,296 KB
testcase_10 AC 38 ms
52,120 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 38 ms
52,500 KB
testcase_13 AC 39 ms
53,560 KB
testcase_14 AC 39 ms
52,656 KB
testcase_15 AC 37 ms
52,556 KB
testcase_16 AC 38 ms
52,660 KB
testcase_17 AC 39 ms
52,184 KB
testcase_18 AC 37 ms
52,396 KB
testcase_19 AC 39 ms
52,072 KB
testcase_20 AC 39 ms
52,944 KB
testcase_21 AC 38 ms
53,348 KB
testcase_22 AC 38 ms
52,340 KB
testcase_23 AC 39 ms
52,368 KB
testcase_24 AC 38 ms
53,052 KB
testcase_25 AC 39 ms
52,236 KB
testcase_26 AC 39 ms
53,780 KB
testcase_27 AC 39 ms
53,596 KB
testcase_28 AC 38 ms
52,816 KB
testcase_29 AC 39 ms
52,372 KB
testcase_30 AC 37 ms
52,492 KB
testcase_31 AC 39 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = list(map(int, input().split()))

def is_ok(x):
    p = 0
    q = 0
    for l in L:
        if l >= x:
            p +=(l-x)//2
        else:
            q += x-l
    if p >= q:
        return True
    else:
        return False

ok = 0
ng = 10**18
while ok+1 < ng:
    c = (ok+ng)//2
    if is_ok(c):
        ok = c
    else:
        ng = c
print(ok)
0