結果

問題 No.58 イカサマなサイコロ
ユーザー %20%20
提出日時 2017-06-18 01:09:32
言語 Perl
(5.38.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 136 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 54,528 KB
実行使用メモリ 60,396 KB
最終ジャッジ日時 2024-10-01 12:03:04
合計ジャッジ時間 14,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 827 ms
60,188 KB
testcase_01 AC 1,874 ms
60,032 KB
testcase_02 AC 818 ms
60,396 KB
testcase_03 AC 651 ms
60,380 KB
testcase_04 AC 1,422 ms
60,032 KB
testcase_05 AC 1,541 ms
60,160 KB
testcase_06 AC 1,808 ms
60,136 KB
testcase_07 WA -
testcase_08 AC 1,143 ms
60,116 KB
testcase_09 AC 1,792 ms
60,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($N,$K)=<>;
map{
	$a=0;
	$a+=0|4+rand 3for 1..$K;
	$a+=0|1+rand 6for$K+1..$N;
	$a-=0|1+rand 6for 1..$N;
	$%+=$a>0;
}1..7e5;
print$%/7e5
0