結果

問題 No.1570 Blocks
ユーザー yuruhiyayuruhiya
提出日時 2021-06-27 15:52:18
言語 Crystal
(1.11.2)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 16,209 ms
コンパイル使用メモリ 295,368 KB
実行使用メモリ 10,176 KB
最終ジャッジ日時 2024-06-25 11:47:41
合計ジャッジ時間 19,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 33 ms
7,680 KB
testcase_03 AC 40 ms
8,960 KB
testcase_04 AC 30 ms
7,168 KB
testcase_05 AC 32 ms
7,168 KB
testcase_06 AC 31 ms
7,424 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 41 ms
8,832 KB
testcase_09 AC 48 ms
9,684 KB
testcase_10 AC 38 ms
8,320 KB
testcase_11 AC 43 ms
8,960 KB
testcase_12 AC 49 ms
9,928 KB
testcase_13 AC 48 ms
9,856 KB
testcase_14 AC 49 ms
9,984 KB
testcase_15 AC 24 ms
6,144 KB
testcase_16 AC 48 ms
9,856 KB
testcase_17 AC 21 ms
5,888 KB
testcase_18 AC 41 ms
8,576 KB
testcase_19 AC 22 ms
5,888 KB
testcase_20 AC 22 ms
6,016 KB
testcase_21 AC 36 ms
8,064 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 47 ms
9,856 KB
testcase_33 AC 48 ms
9,984 KB
testcase_34 AC 44 ms
9,444 KB
testcase_35 AC 46 ms
9,856 KB
testcase_36 AC 46 ms
9,344 KB
testcase_37 AC 46 ms
9,728 KB
testcase_38 AC 47 ms
9,600 KB
testcase_39 AC 49 ms
9,956 KB
testcase_40 AC 47 ms
9,700 KB
testcase_41 AC 48 ms
9,948 KB
testcase_42 AC 50 ms
10,176 KB
testcase_43 AC 48 ms
10,172 KB
testcase_44 AC 49 ms
10,112 KB
testcase_45 AC 49 ms
10,112 KB
testcase_46 AC 48 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
sum = 0i64
puts (1..n).map {
  {Int64, Int64}.from read_line.split.map(&.to_i64)
}.sort_by { |a, b| a + b }.all? { |a, b|
  (sum <= b).tap { sum += a }
} ? "Yes" : "No"
0