結果

問題 No.2233 Average
ユーザー titiatitia
提出日時 2023-03-03 21:52:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 76,660 KB
最終ジャッジ日時 2024-09-17 22:47:54
合計ジャッジ時間 2,793 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,732 KB
testcase_01 AC 37 ms
51,756 KB
testcase_02 AC 34 ms
52,188 KB
testcase_03 AC 34 ms
52,028 KB
testcase_04 AC 34 ms
51,944 KB
testcase_05 AC 35 ms
52,800 KB
testcase_06 AC 37 ms
53,068 KB
testcase_07 AC 37 ms
59,148 KB
testcase_08 AC 88 ms
76,352 KB
testcase_09 AC 114 ms
76,444 KB
testcase_10 AC 91 ms
76,216 KB
testcase_11 AC 92 ms
75,936 KB
testcase_12 AC 88 ms
76,660 KB
testcase_13 AC 58 ms
73,588 KB
testcase_14 AC 85 ms
75,976 KB
testcase_15 AC 95 ms
75,976 KB
testcase_16 AC 66 ms
76,412 KB
testcase_17 AC 69 ms
75,924 KB
testcase_18 AC 117 ms
76,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def calc(a,b,c):
    return (b+c)//2,(a+c)//2,(a+b)//2

T=int(input())
for tests in range(T):
    a,b,c,K=map(int,input().split())

    for i in range(K):
        a,b,c=calc(a,b,c)
        if a==b==c:
            break
    print(a+b+c)
0