結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-11 18:15:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 734 bytes
コンパイル時間 3,431 ms
コンパイル使用メモリ 76,844 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-06-25 23:00:40
合計ジャッジ時間 9,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
41,332 KB
testcase_01 AC 158 ms
41,716 KB
testcase_02 AC 145 ms
41,508 KB
testcase_03 AC 146 ms
41,600 KB
testcase_04 AC 147 ms
41,492 KB
testcase_05 AC 150 ms
41,692 KB
testcase_06 AC 144 ms
41,248 KB
testcase_07 AC 148 ms
41,232 KB
testcase_08 AC 149 ms
41,496 KB
testcase_09 AC 148 ms
41,448 KB
testcase_10 AC 149 ms
41,468 KB
testcase_11 AC 144 ms
41,628 KB
testcase_12 AC 145 ms
41,480 KB
testcase_13 AC 145 ms
41,848 KB
testcase_14 AC 143 ms
41,460 KB
testcase_15 AC 144 ms
41,696 KB
testcase_16 AC 143 ms
41,528 KB
testcase_17 AC 148 ms
41,688 KB
testcase_18 AC 147 ms
41,548 KB
testcase_19 AC 140 ms
41,524 KB
testcase_20 AC 143 ms
41,700 KB
testcase_21 AC 144 ms
41,416 KB
testcase_22 AC 143 ms
41,448 KB
testcase_23 AC 143 ms
41,608 KB
testcase_24 AC 144 ms
41,500 KB
testcase_25 AC 145 ms
41,888 KB
testcase_26 AC 143 ms
41,688 KB
testcase_27 AC 136 ms
40,692 KB
testcase_28 AC 142 ms
41,836 KB
testcase_29 AC 139 ms
40,748 KB
testcase_30 AC 147 ms
41,812 KB
testcase_31 AC 141 ms
41,552 KB
testcase_32 AC 144 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
//import java.text.*;

public class Exercise77{
  public static void main (String[] args){

    //DecimalFormat df = new DecimalFormat("#.############");
    Scanner sc = new Scanner(System.in);

    double n = sc.nextDouble();

    double[] pDice = new double[]{2, 3, 5, 7, 11, 13};
    double[] cDice = new double[]{4, 6, 8, 9, 10, 12};

    double count = 0;

    for (int i = 0; i < pDice.length; i++){
      if (n % pDice[i] != 0){
        continue;
      }
      double devided = n / pDice[i];
      for (int j = 0; j < cDice.length; j++){
        if (devided == cDice[j]){
          count++;
        }else{
        }
      }
    }
    System.out.println(count / (double)(pDice.length * cDice.length));
  }
}
0