結果

問題 No.2233 Average
ユーザー minimumminimum
提出日時 2023-03-03 22:10:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 76,420 KB
最終ジャッジ日時 2024-09-17 23:12:18
合計ジャッジ時間 3,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,584 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 37 ms
51,200 KB
testcase_04 AC 33 ms
52,096 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 38 ms
57,852 KB
testcase_08 AC 191 ms
76,420 KB
testcase_09 AC 260 ms
76,128 KB
testcase_10 AC 204 ms
76,036 KB
testcase_11 AC 174 ms
75,776 KB
testcase_12 AC 162 ms
76,268 KB
testcase_13 AC 89 ms
76,160 KB
testcase_14 AC 169 ms
75,648 KB
testcase_15 AC 232 ms
75,980 KB
testcase_16 AC 132 ms
76,288 KB
testcase_17 AC 146 ms
75,972 KB
testcase_18 AC 310 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    A, B, C, K = map(int, input().split())
    if A == B == C:
        print(A + B + C)
        return
    for _ in range(K):
        if A == B == C:
            print(A + B + C)
            return
        A, B, C = (B + C) // 2, (C + A) // 2, (A + B) // 2
    print(A + B + C)
    return

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