結果

問題 No.57 ミリオンダイス
ユーザー abcabc
提出日時 2016-10-27 01:09:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 1,719 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-11-24 03:57:11
合計ジャッジ時間 3,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,040 KB
testcase_01 AC 116 ms
54,148 KB
testcase_02 AC 109 ms
53,612 KB
testcase_03 AC 117 ms
53,724 KB
testcase_04 AC 114 ms
53,800 KB
testcase_05 AC 106 ms
52,804 KB
testcase_06 AC 116 ms
53,876 KB
testcase_07 AC 115 ms
53,884 KB
testcase_08 AC 110 ms
53,092 KB
testcase_09 AC 121 ms
53,996 KB
testcase_10 AC 108 ms
52,692 KB
testcase_11 AC 118 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        double numDice = sc.nextInt();

        double expectedValue = 7 * numDice / 2;

        System.out.println(expectedValue);

    }

}
0