結果

問題 No.57 ミリオンダイス
ユーザー soujikisoujiki
提出日時 2015-04-29 17:50:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 2,953 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-11-09 00:47:11
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,332 KB
testcase_01 AC 124 ms
41,304 KB
testcase_02 AC 122 ms
41,420 KB
testcase_03 AC 125 ms
41,272 KB
testcase_04 AC 111 ms
40,120 KB
testcase_05 AC 119 ms
41,208 KB
testcase_06 AC 116 ms
41,412 KB
testcase_07 AC 121 ms
41,184 KB
testcase_08 AC 125 ms
41,724 KB
testcase_09 AC 123 ms
41,072 KB
testcase_10 AC 126 ms
41,616 KB
testcase_11 AC 121 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_57{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int N = stdIn.nextInt();
		double ex = 0;

		ex = 21.0*(double)N/6.0;

		System.out.printf("%.2f\n",ex);
	}
}
0