結果

問題 No.567 コンプリート
ユーザー cielciel
提出日時 2017-09-10 13:57:46
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 93 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-04-25 02:57:35
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
17,792 KB
testcase_01 AC 77 ms
12,288 KB
testcase_02 AC 74 ms
12,288 KB
testcase_03 AC 74 ms
12,288 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 75 ms
12,416 KB
testcase_06 AC 75 ms
12,416 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 76 ms
12,288 KB
testcase_09 AC 78 ms
12,288 KB
testcase_10 AC 77 ms
12,416 KB
testcase_11 AC 75 ms
12,416 KB
testcase_12 AC 75 ms
12,160 KB
testcase_13 AC 76 ms
12,288 KB
testcase_14 AC 79 ms
12,160 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
m=[1.0,*[0]*6]
N.times{|i|m=[0]+6.times.map{|j|m[j]*(6-j)/6+m[j+1]*-~j/6}}
p m[6]
0