結果

問題 No.54 Happy Hallowe'en
ユーザー gigurururugigurururu
提出日時 2014-11-06 23:49:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,639 ms / 5,000 ms
コード長 130 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-06-10 00:55:50
合計ジャッジ時間 25,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 78 ms
12,416 KB
testcase_02 AC 74 ms
12,288 KB
testcase_03 AC 74 ms
12,416 KB
testcase_04 AC 692 ms
12,544 KB
testcase_05 AC 1,188 ms
12,544 KB
testcase_06 AC 1,737 ms
12,544 KB
testcase_07 AC 2,703 ms
12,800 KB
testcase_08 AC 3,542 ms
12,800 KB
testcase_09 AC 4,615 ms
13,184 KB
testcase_10 AC 75 ms
12,160 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 4,608 ms
12,928 KB
testcase_13 AC 4,639 ms
13,184 KB
testcase_14 AC 77 ms
12,288 KB
testcase_15 AC 79 ms
12,288 KB
testcase_16 AC 82 ms
12,288 KB
testcase_17 AC 84 ms
12,416 KB
testcase_18 AC 77 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

m=[1]
(1..gets.to_i).map{gets.split.map &:to_i}.sort_by{|i,j|i+j}.each{|i,j|
  (j-1).downto(0){|k|m[k]&&m[k+i]=1}
}
p m.size-1
0