結果

問題 No.2024 Xer
ユーザー keidenkeiden
提出日時 2024-09-29 20:36:18
言語 Scheme
(Gauche-0.9.14)
結果
RE  
実行時間 -
コード長 554 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 40,272 KB
最終ジャッジ日時 2024-09-29 20:36:39
合計ジャッジ時間 18,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 68 ms
23,936 KB
testcase_02 AC 64 ms
24,064 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 66 ms
23,936 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 976 ms
40,124 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 407 ms
32,256 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 525 ms
37,148 KB
testcase_21 AC 998 ms
39,932 KB
testcase_22 AC 951 ms
40,028 KB
testcase_23 AC 885 ms
40,028 KB
testcase_24 AC 1,016 ms
40,104 KB
testcase_25 AC 68 ms
24,320 KB
testcase_26 AC 87 ms
25,728 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 77 ms
24,704 KB
testcase_30 AC 74 ms
25,600 KB
testcase_31 AC 77 ms
25,600 KB
testcase_32 RE -
testcase_33 AC 64 ms
25,472 KB
testcase_34 AC 58 ms
24,320 KB
testcase_35 AC 56 ms
24,064 KB
testcase_36 AC 63 ms
25,344 KB
testcase_37 AC 76 ms
25,728 KB
testcase_38 AC 77 ms
25,728 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 74 ms
25,728 KB
testcase_43 RE -
testcase_44 RE -
testcase_45 AC 491 ms
36,948 KB
testcase_46 AC 153 ms
29,696 KB
testcase_47 AC 444 ms
36,948 KB
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.sort)

(define yuki2024
  (let* ((n (read))
         (x (read))
         (an (make-vector n))
         (k<? (lambda (px py) (< (+ px (logxor px x)) (+ py (logxor py x))))))
    (dotimes (i n) (vector-set! an i (read)))
    (vector-sort! k<? an)
    (let loop ((i 0))
      (if (= i (- n 1))
        (display "Yes\n"))
        (cond
          ((>= (vector-ref an i) (logxor (vector-ref an (+ i 1)) x)) (display "No\n"))
          ((<= (vector-ref an (+ i 1)) (logxor (vector-ref an i) x)) (display "No\n"))
          (else (loop (+ i 1)))))))
0