結果

問題 No.57 ミリオンダイス
ユーザー 37zigen37zigen
提出日時 2016-03-23 13:24:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 240 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 54,760 KB
最終ジャッジ日時 2024-11-14 06:08:08
合計ジャッジ時間 4,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
54,248 KB
testcase_01 AC 150 ms
54,276 KB
testcase_02 AC 154 ms
54,244 KB
testcase_03 AC 153 ms
54,080 KB
testcase_04 AC 153 ms
54,336 KB
testcase_05 AC 147 ms
54,304 KB
testcase_06 AC 151 ms
54,152 KB
testcase_07 AC 149 ms
53,960 KB
testcase_08 AC 152 ms
54,244 KB
testcase_09 AC 150 ms
54,760 KB
testcase_10 AC 150 ms
54,252 KB
testcase_11 AC 149 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder057;

import java.util.Scanner;

public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double n=sc.nextDouble();
		double ans=n*(1+2+3+4+5+6)/6;
		System.out.println(ans);
	}
}
0