結果

問題 No.57 ミリオンダイス
ユーザー takutakutakutaku
提出日時 2020-09-18 15:35:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 308 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-22 07:59:59
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,936 KB
testcase_01 AC 133 ms
54,008 KB
testcase_02 AC 130 ms
54,220 KB
testcase_03 AC 136 ms
54,152 KB
testcase_04 AC 135 ms
53,628 KB
testcase_05 AC 133 ms
53,904 KB
testcase_06 AC 131 ms
54,304 KB
testcase_07 AC 129 ms
53,960 KB
testcase_08 AC 118 ms
53,072 KB
testcase_09 AC 131 ms
53,804 KB
testcase_10 AC 130 ms
54,004 KB
testcase_11 AC 131 ms
53,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 標準入力を受け取る
	    Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        // 期待値はサイコロの数を3.5倍すればいい?
        System.out.println(3.5 * n);
	}
}
0