結果

問題 No.2024 Xer
ユーザー kotatsugamekotatsugame
提出日時 2023-07-29 13:53:27
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-10-07 21:49:44
合計ジャッジ時間 7,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,032 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 78 ms
12,032 KB
testcase_07 AC 237 ms
30,976 KB
testcase_08 AC 217 ms
31,616 KB
testcase_09 AC 180 ms
27,520 KB
testcase_10 AC 218 ms
31,488 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 122 ms
17,920 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 145 ms
20,992 KB
testcase_21 AC 189 ms
27,520 KB
testcase_22 AC 185 ms
27,648 KB
testcase_23 AC 198 ms
27,520 KB
testcase_24 AC 187 ms
27,392 KB
testcase_25 AC 77 ms
12,160 KB
testcase_26 AC 82 ms
12,032 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 77 ms
12,288 KB
testcase_30 AC 81 ms
12,160 KB
testcase_31 AC 84 ms
12,288 KB
testcase_32 WA -
testcase_33 AC 82 ms
12,160 KB
testcase_34 AC 80 ms
12,288 KB
testcase_35 AC 79 ms
12,032 KB
testcase_36 AC 83 ms
12,160 KB
testcase_37 AC 83 ms
12,160 KB
testcase_38 AC 81 ms
12,160 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 80 ms
12,032 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 157 ms
24,448 KB
testcase_46 AC 96 ms
14,464 KB
testcase_47 AC 142 ms
20,736 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 85 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

(n,x),a=$<.map{_1.split.map &:to_i}
a.sort!
puts a.each_cons(2).all?{_1<_2^x&&_1^x<_2}? :Yes : :No
0