結果

問題 No.2233 Average
ユーザー roarisroaris
提出日時 2023-03-03 23:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-18 00:37:46
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,948 KB
testcase_01 AC 37 ms
52,220 KB
testcase_02 AC 35 ms
53,320 KB
testcase_03 AC 35 ms
52,208 KB
testcase_04 AC 33 ms
52,876 KB
testcase_05 AC 38 ms
52,964 KB
testcase_06 AC 36 ms
52,412 KB
testcase_07 AC 38 ms
58,652 KB
testcase_08 AC 90 ms
75,948 KB
testcase_09 AC 115 ms
75,764 KB
testcase_10 AC 94 ms
75,904 KB
testcase_11 AC 112 ms
75,780 KB
testcase_12 AC 94 ms
75,904 KB
testcase_13 AC 63 ms
72,064 KB
testcase_14 AC 91 ms
76,160 KB
testcase_15 AC 101 ms
75,724 KB
testcase_16 AC 68 ms
75,904 KB
testcase_17 AC 69 ms
75,836 KB
testcase_18 AC 118 ms
75,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

for _ in range(int(input())):
    a, b, c, K = map(int, input().split())
    
    for _ in range(K):
        a, b, c = (b+c)//2, (c+a)//2, (a+b)//2
        
        if a==b==c:
            print(3*a)
            break
    else:
        print(a+b+c)
0