結果

問題 No.1570 Blocks
ユーザー maguroflymagurofly
提出日時 2021-06-27 13:24:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-06-25 11:24:09
合計ジャッジ時間 11,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 217 ms
17,408 KB
testcase_03 WA -
testcase_04 AC 199 ms
16,640 KB
testcase_05 AC 208 ms
16,896 KB
testcase_06 WA -
testcase_07 AC 103 ms
12,928 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 250 ms
18,432 KB
testcase_11 AC 252 ms
18,688 KB
testcase_12 WA -
testcase_13 AC 278 ms
19,456 KB
testcase_14 AC 280 ms
19,840 KB
testcase_15 AC 174 ms
15,872 KB
testcase_16 AC 280 ms
19,840 KB
testcase_17 WA -
testcase_18 AC 237 ms
18,432 KB
testcase_19 WA -
testcase_20 AC 169 ms
15,488 KB
testcase_21 WA -
testcase_22 AC 85 ms
12,288 KB
testcase_23 AC 88 ms
12,416 KB
testcase_24 AC 84 ms
12,288 KB
testcase_25 AC 84 ms
12,160 KB
testcase_26 AC 83 ms
12,416 KB
testcase_27 AC 85 ms
12,288 KB
testcase_28 AC 84 ms
12,160 KB
testcase_29 AC 84 ms
12,416 KB
testcase_30 AC 84 ms
12,288 KB
testcase_31 AC 85 ms
12,416 KB
testcase_32 AC 279 ms
20,480 KB
testcase_33 WA -
testcase_34 AC 270 ms
19,072 KB
testcase_35 WA -
testcase_36 AC 272 ms
19,200 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 280 ms
19,968 KB
testcase_40 AC 274 ms
19,328 KB
testcase_41 WA -
testcase_42 AC 284 ms
19,840 KB
testcase_43 AC 287 ms
20,096 KB
testcase_44 AC 285 ms
19,968 KB
testcase_45 AC 284 ms
20,096 KB
testcase_46 AC 284 ms
20,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
blocks = Array.new(N) { gets.split.map(&:to_i) }
blocks.sort_by { |a, b| b * 10**9 + a }

sum = 0
blocks.each do |a, b|
    if sum > b
        puts "No"
        exit
    end
    sum += a
end

puts "Yes"
0