結果

問題 No.2233 Average
ユーザー tktk_snsntktk_snsn
提出日時 2023-03-03 21:35:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,226 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 80,844 KB
最終ジャッジ日時 2024-09-17 22:28:40
合計ジャッジ時間 4,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
73,216 KB
testcase_01 AC 73 ms
73,216 KB
testcase_02 AC 71 ms
72,704 KB
testcase_03 AC 72 ms
72,960 KB
testcase_04 AC 72 ms
73,236 KB
testcase_05 AC 73 ms
73,216 KB
testcase_06 AC 72 ms
72,832 KB
testcase_07 AC 89 ms
80,000 KB
testcase_08 AC 138 ms
80,384 KB
testcase_09 AC 163 ms
80,768 KB
testcase_10 AC 147 ms
80,640 KB
testcase_11 AC 142 ms
80,648 KB
testcase_12 AC 138 ms
80,640 KB
testcase_13 AC 113 ms
80,512 KB
testcase_14 AC 140 ms
80,844 KB
testcase_15 AC 150 ms
80,304 KB
testcase_16 AC 116 ms
80,720 KB
testcase_17 AC 122 ms
80,376 KB
testcase_18 AC 170 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import os
import inspect
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10 ** 18

if os.getenv("TKTKLOCAL", False):
    def debug(*arg, sep=" ", end="\n"):
        print(*arg, sep=sep, end=end, file=sys.stderr)

    def debug_indent(*arg, sep=" ", end="\n", indent="    "):
        frame = inspect.currentframe().f_back
        par_func = inspect.getframeinfo(frame).function
        if par_func == "<module>":
            debug(*arg, sep=sep, end=end)
            return

        frame_stack = inspect.stack()
        if len(frame_stack) > 30:
            return

        depth = sum(f.function == par_func for f in frame_stack)
        debug(indent * (depth - 1), end="")
        debug(*arg, sep=sep, end=end)
else:
    def debug(*arg, **kwarg):
        pass

    def debug_indent(*arg, **kwarg):
        pass


def f(x, y):
    return (x + y) // 2


def solve():
    a, b, c, K = map(int, input().split())
    if a == b == c:
        print(3 * a)
        return

    for _ in range(K):
        na, nb, nc = f(b, c), f(a, c), f(a, b)
        if (a, b, c) == (na, nb, nc):
            break
        a, b, c = na, nb, nc
    print(a + b + c)


T = int(input())
for _ in range(T):
    solve()
0