結果

問題 No.58 イカサマなサイコロ
ユーザー %20%20
提出日時 2017-06-18 00:58:36
言語 Perl
(5.38.2)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 125 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 55,936 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-10-01 11:58:34
合計ジャッジ時間 21,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3,259 ms
61,712 KB
testcase_02 AC 1,100 ms
61,568 KB
testcase_03 AC 795 ms
61,696 KB
testcase_04 AC 2,186 ms
61,952 KB
testcase_05 AC 2,474 ms
61,820 KB
testcase_06 AC 2,990 ms
61,696 KB
testcase_07 AC 1,103 ms
61,748 KB
testcase_08 AC 1,633 ms
61,572 KB
testcase_09 AC 2,953 ms
61,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

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