結果

問題 No.33 アメーバがたくさん
ユーザー mmmpppmmmppp
提出日時 2017-02-23 19:50:17
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 115 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 92,872 KB
最終ジャッジ日時 2024-09-24 15:20:53
合計ジャッジ時間 7,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 80 ms
12,160 KB
testcase_05 AC 77 ms
12,288 KB
testcase_06 AC 78 ms
12,160 KB
testcase_07 AC 78 ms
12,288 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,d,t,*x=$<.read.split.map &:to_i
h={};x.map{|e|h[e]=1}
t.times{y={};h.map{|k,v|y[k-d]=y[k]=y[k+d]=1};h=y}
p h.size
0