結果

問題 No.54 Happy Hallowe'en
ユーザー gigurururugigurururu
提出日時 2014-11-06 23:42:14
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-10 00:53:41
合計ジャッジ時間 25,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,416 KB
testcase_01 AC 83 ms
12,416 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 73 ms
12,160 KB
testcase_04 AC 715 ms
12,544 KB
testcase_05 AC 1,195 ms
12,416 KB
testcase_06 AC 1,781 ms
12,800 KB
testcase_07 AC 2,679 ms
12,928 KB
testcase_08 AC 3,611 ms
13,440 KB
testcase_09 AC 4,712 ms
13,696 KB
testcase_10 AC 78 ms
12,288 KB
testcase_11 AC 76 ms
12,288 KB
testcase_12 AC 4,667 ms
13,696 KB
testcase_13 AC 4,621 ms
13,696 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 82 ms
12,160 KB
testcase_17 AC 81 ms
12,160 KB
testcase_18 AC 75 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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