結果

問題 No.2233 Average
ユーザー satama6satama6
提出日時 2023-03-03 21:33:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,036 KB
最終ジャッジ日時 2024-09-17 22:25:43
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,328 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 205 ms
75,904 KB
testcase_09 AC 262 ms
75,776 KB
testcase_10 AC 183 ms
75,904 KB
testcase_11 AC 182 ms
75,776 KB
testcase_12 AC 161 ms
76,036 KB
testcase_13 AC 87 ms
75,392 KB
testcase_14 AC 173 ms
75,904 KB
testcase_15 AC 236 ms
75,708 KB
testcase_16 AC 103 ms
75,904 KB
testcase_17 AC 113 ms
75,776 KB
testcase_18 AC 310 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def func(a, b, c):
    ra = (b + c) // 2
    rb = (a + c) // 2
    rc = (b + a) // 2
    return ra, rb, rc


while T:
    T -= 1
    a, b, c, K = map(int, input().split())

    while K:
        K -= 1
        a, b, c = func(a, b, c)
        if a == b == c : break
    
    print(a + b + c)
0