結果

問題 No.57 ミリオンダイス
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-07 15:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 2,956 ms
コンパイル使用メモリ 73,260 KB
実行使用メモリ 37,324 KB
最終ジャッジ日時 2024-11-17 04:27:05
合計ジャッジ時間 4,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,008 KB
testcase_01 AC 47 ms
37,324 KB
testcase_02 AC 46 ms
37,040 KB
testcase_03 AC 46 ms
36,848 KB
testcase_04 AC 47 ms
37,240 KB
testcase_05 AC 49 ms
37,292 KB
testcase_06 AC 51 ms
37,020 KB
testcase_07 AC 48 ms
37,200 KB
testcase_08 AC 49 ms
36,960 KB
testcase_09 AC 49 ms
37,288 KB
testcase_10 AC 50 ms
36,844 KB
testcase_11 AC 49 ms
36,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Test{
	public static void main(String[] args) {
		try{
			getAns();
		}
		catch(IOException e){
			e.getStackTrace();
		}
		catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
	
	public static void getAns() throws IOException, NumberFormatException{
		double ans = 0;
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		double N = Double.parseDouble(br.readLine());
		ans = N * 3.5;
		System.out.println(ans);
	}
}
0