結果

問題 No.2233 Average
ユーザー Humming_sangoHumming_sango
提出日時 2023-03-06 17:49:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,016 ms / 2,000 ms
コード長 1,609 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 76,656 KB
実行使用メモリ 63,456 KB
最終ジャッジ日時 2024-09-18 01:54:08
合計ジャッジ時間 11,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,044 KB
testcase_01 AC 53 ms
37,272 KB
testcase_02 AC 52 ms
37,024 KB
testcase_03 AC 53 ms
36,908 KB
testcase_04 AC 53 ms
37,328 KB
testcase_05 AC 55 ms
36,988 KB
testcase_06 AC 54 ms
36,792 KB
testcase_07 AC 60 ms
37,396 KB
testcase_08 AC 770 ms
60,012 KB
testcase_09 AC 998 ms
63,456 KB
testcase_10 AC 834 ms
63,336 KB
testcase_11 AC 850 ms
63,188 KB
testcase_12 AC 781 ms
62,764 KB
testcase_13 AC 313 ms
49,944 KB
testcase_14 AC 701 ms
60,244 KB
testcase_15 AC 823 ms
60,932 KB
testcase_16 AC 383 ms
49,240 KB
testcase_17 AC 436 ms
53,988 KB
testcase_18 AC 1,016 ms
60,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
 
public class Main {
	
	public static void main(String[] args) {
		FastReader fr = new FastReader();
		int t = fr.nextInt();
		for(int i=0;i<t;i++) {
			long a = fr.nextLong();
			long b = fr.nextLong();
			long c = fr.nextLong();
			long k = fr.nextLong();
			for(long j=0;j<k;j++) {
				long na = (b+c)/2L;
				long nb = (a+c)/2L;
				long nc = (a+b)/2L;
				a = na;
				b = nb;
				c = nc;
				if(a==b && a==c) break;
			}
			System.out.println(a+b+c);
		}
	}
	
	
}

class FastReader {
	private final BufferedReader reader = new BufferedReader(new InputStreamReader(System.in), 0x10000);
	private StringTokenizer tokenizer;
	
	String next() {
		try{
			while(tokenizer==null || !tokenizer.hasMoreTokens()) {
				tokenizer = new StringTokenizer(reader.readLine());
			} 
		}catch(IOException e){
			e.printStackTrace();
		}
		return tokenizer.nextToken();
		
	}
	
	int nextInt() {
		return Integer.parseInt(next());
	}
	
	long nextLong() {
		return Long.parseLong(next());
	}
	
	double nextDouble(){
		return Double.parseDouble(next());
	}
	
	char[] nextCharArray() {
        return next().toCharArray();
    }
	
	char nextSingleChar() { //一文字じゃなかったら' '(空白文字)返す
		char[] c = next().toCharArray();
		if(c.length==1) {
			return c[0]; 
		}else {
			return ' ';
		}
	}
	
	String[] nextStringArray(int n) {
	        String[] s = new String[n];
	        for (int i = 0; i < n; i++) {
	            s[i] = next();
	        }
	        return s;
	    }

}
0