結果

問題 No.172 UFOを捕まえろ
ユーザー ルッツファンルッツファン
提出日時 2015-11-28 01:54:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 3,333 ms
コンパイル使用メモリ 73,264 KB
実行使用メモリ 37,088 KB
最終ジャッジ日時 2024-10-15 14:34:08
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,532 KB
testcase_01 AC 46 ms
37,088 KB
testcase_02 AC 47 ms
36,572 KB
testcase_03 AC 47 ms
36,800 KB
testcase_04 AC 49 ms
36,804 KB
testcase_05 AC 48 ms
36,784 KB
testcase_06 AC 47 ms
36,928 KB
testcase_07 AC 45 ms
37,064 KB
testcase_08 AC 46 ms
36,892 KB
testcase_09 AC 46 ms
36,488 KB
testcase_10 AC 45 ms
36,968 KB
testcase_11 AC 46 ms
36,968 KB
testcase_12 AC 47 ms
36,764 KB
testcase_13 AC 48 ms
36,760 KB
testcase_14 AC 49 ms
36,824 KB
testcase_15 AC 48 ms
36,796 KB
testcase_16 AC 48 ms
36,600 KB
testcase_17 AC 47 ms
36,536 KB
testcase_18 AC 47 ms
36,856 KB
testcase_19 AC 46 ms
36,516 KB
testcase_20 AC 48 ms
36,716 KB
testcase_21 AC 47 ms
36,904 KB
testcase_22 AC 47 ms
36,940 KB
testcase_23 AC 48 ms
36,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class yukicoder06 {
	public static void main(String[] args){
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String tes = null;
		
			try {
				tes = br.readLine();
			} catch (IOException e) {
				// TODO 自動生成された catch ブロック
				e.printStackTrace();
			}
			
			String[] tew = tes.split(" ");
			long x1 = Long.parseLong(tew[0]);
			long x2 = Long.parseLong(tew[1]);
			long x3 = Long.parseLong(tew[2]);
			
			x1 = Math.abs(x1);
			x2 = Math.abs(x2);
			x3 = Math.abs(x3);
			
			
			System.out.println((long)(((x1+x2)+2d*x3*Math.sin(Math.toRadians(45d))+1)));
			
			
	}

}
0