結果

問題 No.2233 Average
ユーザー pluto77pluto77
提出日時 2023-03-12 15:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 76,292 KB
最終ジャッジ日時 2024-09-18 07:05:02
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,148 KB
testcase_01 AC 38 ms
52,256 KB
testcase_02 AC 37 ms
52,632 KB
testcase_03 AC 38 ms
53,380 KB
testcase_04 AC 37 ms
52,104 KB
testcase_05 AC 39 ms
52,172 KB
testcase_06 AC 37 ms
52,836 KB
testcase_07 AC 42 ms
58,284 KB
testcase_08 AC 204 ms
76,060 KB
testcase_09 AC 280 ms
76,064 KB
testcase_10 AC 190 ms
76,292 KB
testcase_11 AC 198 ms
75,516 KB
testcase_12 AC 165 ms
75,640 KB
testcase_13 AC 88 ms
76,060 KB
testcase_14 AC 172 ms
75,716 KB
testcase_15 AC 218 ms
76,112 KB
testcase_16 AC 105 ms
75,700 KB
testcase_17 AC 118 ms
76,144 KB
testcase_18 AC 292 ms
76,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
 a,b,c,k=map(int,input().split())
 for j in range(k):
  a,b,c=(b+c)//2,(c+a)//2,(a+b)//2
  if a==b==c:
   break
 print(a+b+c)
0