結果
問題 | No.58 イカサマなサイコロ |
ユーザー | kou6839 |
提出日時 | 2015-01-02 02:09:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 352 ms / 5,000 ms |
コード長 | 607 bytes |
コンパイル時間 | 2,225 ms |
コンパイル使用メモリ | 74,188 KB |
実行使用メモリ | 41,720 KB |
最終ジャッジ日時 | 2024-06-13 01:11:29 |
合計ジャッジ時間 | 5,788 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 178 ms
40,856 KB |
testcase_01 | AC | 352 ms
41,264 KB |
testcase_02 | AC | 187 ms
41,448 KB |
testcase_03 | AC | 166 ms
41,300 KB |
testcase_04 | AC | 283 ms
41,444 KB |
testcase_05 | AC | 301 ms
41,348 KB |
testcase_06 | AC | 348 ms
41,448 KB |
testcase_07 | AC | 186 ms
41,244 KB |
testcase_08 | AC | 246 ms
41,720 KB |
testcase_09 | AC | 327 ms
40,724 KB |
ソースコード
import java.math.*; import java.util.*; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int win=0; for(int i=0;i<400000;i++){ int ji=0; int ta=0; for(int j=0;j<a;j++){ ji+=Math.random()*6+1; } for(int j=0;j<b;j++){ ta+=Math.random()*3+4; } for(int j=0;j<a-b;j++){ ta+=Math.random()*6+1; } if(ta>ji) win++; } System.out.println(1.0*win/400000); } }