結果

問題 No.57 ミリオンダイス
ユーザー mustonmuston
提出日時 2016-05-20 14:09:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-04-26 16:50:55
合計ジャッジ時間 4,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,384 KB
testcase_01 AC 113 ms
40,200 KB
testcase_02 AC 125 ms
41,144 KB
testcase_03 AC 129 ms
41,152 KB
testcase_04 AC 115 ms
40,072 KB
testcase_05 AC 128 ms
41,192 KB
testcase_06 AC 112 ms
40,432 KB
testcase_07 AC 113 ms
40,180 KB
testcase_08 AC 128 ms
41,328 KB
testcase_09 AC 126 ms
41,360 KB
testcase_10 AC 114 ms
40,116 KB
testcase_11 AC 114 ms
40,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
/*yukicoder No57 ミリオンダイス*/
class No57{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    //サイコロを振る回数を入力
    double n = scan.nextInt();
    //期待値を計算
    double ans = 7*n/2;
    System.out.println(ans);
  }
}
0