結果

問題 No.1205 Eye Drops
ユーザー gemmarogemmaro
提出日時 2020-09-06 18:28:59
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 63 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-05-06 21:20:30
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 83 ms
12,032 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 77 ms
12,032 KB
testcase_04 AC 76 ms
12,032 KB
testcase_05 AC 76 ms
12,032 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 76 ms
12,032 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 79 ms
12,032 KB
testcase_11 AC 77 ms
12,288 KB
testcase_12 AC 77 ms
12,032 KB
testcase_13 AC 76 ms
12,032 KB
testcase_14 AC 77 ms
12,032 KB
testcase_15 AC 76 ms
12,032 KB
testcase_16 AC 74 ms
12,160 KB
testcase_17 AC 76 ms
12,032 KB
testcase_18 AC 72 ms
12,032 KB
testcase_19 AC 78 ms
12,032 KB
testcase_20 AC 76 ms
12,288 KB
testcase_21 AC 79 ms
12,032 KB
testcase_22 AC 78 ms
12,032 KB
testcase_23 AC 80 ms
12,288 KB
testcase_24 AC 78 ms
12,032 KB
testcase_25 AC 79 ms
12,160 KB
testcase_26 AC 76 ms
12,288 KB
testcase_27 AC 76 ms
12,032 KB
testcase_28 WA -
testcase_29 AC 76 ms
12,288 KB
testcase_30 AC 79 ms
12,032 KB
testcase_31 AC 74 ms
12,160 KB
testcase_32 AC 226 ms
18,816 KB
testcase_33 AC 227 ms
19,456 KB
testcase_34 AC 236 ms
19,456 KB
testcase_35 AC 238 ms
19,072 KB
testcase_36 AC 236 ms
19,200 KB
testcase_37 AC 256 ms
20,480 KB
testcase_38 AC 74 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve
  tp = TP
  tp.prepend([0, 0])
  tp.each_cons(2).any? { |a, b| (b[0] - a[0]) < (b[1] - a[1]) } ? 'No' : 'Yes'
end

N, M = gets.split.map(&:to_i)
TP = M.times.map { gets.split.map(&:to_i) }

puts solve
0