結果

問題 No.57 ミリオンダイス
ユーザー kuramukuramu
提出日時 2016-01-21 00:51:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 37,236 KB
最終ジャッジ日時 2024-04-26 16:44:59
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,548 KB
testcase_01 AC 51 ms
37,140 KB
testcase_02 AC 51 ms
37,000 KB
testcase_03 AC 51 ms
37,068 KB
testcase_04 AC 51 ms
37,236 KB
testcase_05 AC 52 ms
37,132 KB
testcase_06 AC 51 ms
36,932 KB
testcase_07 AC 52 ms
37,064 KB
testcase_08 AC 53 ms
37,032 KB
testcase_09 AC 54 ms
36,540 KB
testcase_10 AC 52 ms
37,012 KB
testcase_11 AC 52 ms
37,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));

	      try {
		      double N =Long.parseLong(stdReader.readLine());
		      System.out.println(3.5*N);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}	
}
0