結果

問題 No.172 UFOを捕まえろ
ユーザー a3636takoa3636tako
提出日時 2016-07-22 18:51:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 2,194 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 49,204 KB
最終ジャッジ日時 2023-08-06 05:15:41
合計ジャッジ時間 3,977 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,004 KB
testcase_01 AC 42 ms
49,048 KB
testcase_02 AC 41 ms
48,824 KB
testcase_03 AC 42 ms
48,820 KB
testcase_04 AC 42 ms
49,156 KB
testcase_05 AC 42 ms
49,028 KB
testcase_06 AC 41 ms
49,020 KB
testcase_07 AC 42 ms
49,068 KB
testcase_08 AC 42 ms
47,056 KB
testcase_09 AC 41 ms
49,088 KB
testcase_10 AC 41 ms
48,984 KB
testcase_11 AC 41 ms
49,120 KB
testcase_12 AC 41 ms
49,124 KB
testcase_13 AC 41 ms
48,836 KB
testcase_14 AC 40 ms
49,080 KB
testcase_15 AC 41 ms
49,164 KB
testcase_16 AC 41 ms
48,836 KB
testcase_17 AC 41 ms
49,204 KB
testcase_18 AC 42 ms
48,836 KB
testcase_19 AC 42 ms
48,956 KB
testcase_20 AC 41 ms
48,964 KB
testcase_21 AC 40 ms
48,952 KB
testcase_22 AC 41 ms
48,952 KB
testcase_23 AC 40 ms
48,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
 
public class Main{
	public void solve(){
		int X = Math.abs(nextInt());
		int Y = Math.abs(nextInt());
		int R = nextInt();
		
		int ans = X + Y;
		out.println((int)(X + Y + R * Math.sqrt(2) + 1.0 + 1.0e-8));
		
	}
	
	public boolean check(String str, int idx){
		if(idx + 3 >= str.length()) return false;
		if(str.charAt(idx) != 'i') return false;
		if(str.charAt(idx + 1) != 'w') return false;
		if(str.charAt(idx + 2) != 'i') return false;
		return true;
	}
	
	private static PrintWriter out;
	public static void main(String[] args){
		out = new PrintWriter(System.out);
		new Main().solve();
		out.flush();
	}
	
	
	
	public static int nextInt(){
		int num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10 + (c - '0');
		}
		return minus ? -num : num;
	}
	
	public static long nextLong(){
		long num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10l + (c - '0');
		}
		return minus ? -num : num;
	}
	public static String next(){
		int c;
		while(!isAlNum(c = read())){}
		StringBuilder build = new StringBuilder();
		build.append((char)c);
		while(isAlNum(c = read())){
			build.append((char)c);
		}
		return build.toString();
	}
	
	
	private static byte[] inputBuffer = new byte[1024];
	private static int bufferLength = 0;
	private static int bufferIndex = 0;
	private static int read(){
		if(bufferLength < 0) throw new RuntimeException();
		if(bufferIndex >= bufferLength){
			try{
				bufferLength = System.in.read(inputBuffer);
				bufferIndex = 0;
			}catch(IOException e){
				throw new RuntimeException(e);
			}
			if(bufferLength <= 0) return (bufferLength = -1);
		}
		return inputBuffer[bufferIndex++];
	}
	
	private static boolean isAlNum(int c){
		return '!' <= c && c <= '~';
	}
}
0