結果

問題 No.58 イカサマなサイコロ
ユーザー %20%20
提出日時 2017-06-18 00:57:58
言語 Perl
(5.38.2)
結果
AC  
実行時間 3,380 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 58,112 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-10-01 11:57:41
合計ジャッジ時間 22,675 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,138 ms
64,256 KB
testcase_01 AC 3,380 ms
64,000 KB
testcase_02 AC 1,158 ms
64,048 KB
testcase_03 AC 826 ms
64,256 KB
testcase_04 AC 2,332 ms
64,128 KB
testcase_05 AC 2,619 ms
64,052 KB
testcase_06 AC 3,172 ms
64,152 KB
testcase_07 AC 1,172 ms
64,384 KB
testcase_08 AC 1,757 ms
64,128 KB
testcase_09 AC 3,149 ms
64,028 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.5e5;
print$%/7.5e5
0