結果

問題 No.57 ミリオンダイス
ユーザー soujikisoujiki
提出日時 2015-04-29 17:50:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 3,347 ms
コンパイル使用メモリ 75,444 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-04-26 10:16:02
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,008 KB
testcase_01 AC 116 ms
40,372 KB
testcase_02 AC 117 ms
40,028 KB
testcase_03 AC 112 ms
40,412 KB
testcase_04 AC 128 ms
41,160 KB
testcase_05 AC 117 ms
40,348 KB
testcase_06 AC 118 ms
39,956 KB
testcase_07 AC 121 ms
41,036 KB
testcase_08 AC 122 ms
41,500 KB
testcase_09 AC 111 ms
40,324 KB
testcase_10 AC 125 ms
41,500 KB
testcase_11 AC 125 ms
41,392 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