結果

問題 No.2024 Xer
ユーザー keidenkeiden
提出日時 2024-09-29 20:45:54
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 961 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 40,132 KB
最終ジャッジ日時 2024-09-29 20:46:12
合計ジャッジ時間 17,674 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
24,064 KB
testcase_01 AC 51 ms
24,064 KB
testcase_02 AC 53 ms
23,936 KB
testcase_03 AC 52 ms
24,064 KB
testcase_04 AC 51 ms
24,192 KB
testcase_05 AC 54 ms
24,064 KB
testcase_06 AC 52 ms
24,064 KB
testcase_07 AC 918 ms
40,024 KB
testcase_08 AC 686 ms
39,972 KB
testcase_09 AC 961 ms
40,088 KB
testcase_10 AC 703 ms
40,056 KB
testcase_11 AC 304 ms
32,256 KB
testcase_12 AC 511 ms
37,108 KB
testcase_13 AC 571 ms
37,268 KB
testcase_14 AC 896 ms
39,824 KB
testcase_15 AC 444 ms
32,128 KB
testcase_16 AC 585 ms
37,064 KB
testcase_17 AC 376 ms
32,184 KB
testcase_18 AC 355 ms
32,152 KB
testcase_19 AC 898 ms
39,928 KB
testcase_20 AC 512 ms
37,048 KB
testcase_21 AC 936 ms
40,036 KB
testcase_22 AC 944 ms
39,932 KB
testcase_23 AC 906 ms
40,132 KB
testcase_24 AC 947 ms
40,060 KB
testcase_25 AC 56 ms
24,576 KB
testcase_26 AC 74 ms
25,856 KB
testcase_27 AC 60 ms
25,088 KB
testcase_28 AC 55 ms
24,448 KB
testcase_29 AC 58 ms
24,704 KB
testcase_30 AC 72 ms
25,600 KB
testcase_31 AC 77 ms
25,600 KB
testcase_32 AC 86 ms
25,856 KB
testcase_33 AC 63 ms
25,472 KB
testcase_34 AC 57 ms
24,576 KB
testcase_35 AC 53 ms
24,320 KB
testcase_36 AC 63 ms
25,472 KB
testcase_37 AC 73 ms
25,856 KB
testcase_38 AC 76 ms
25,600 KB
testcase_39 AC 53 ms
24,192 KB
testcase_40 AC 57 ms
24,320 KB
testcase_41 AC 62 ms
25,088 KB
testcase_42 AC 72 ms
25,728 KB
testcase_43 AC 62 ms
25,472 KB
testcase_44 AC 73 ms
25,856 KB
testcase_45 AC 534 ms
36,896 KB
testcase_46 AC 152 ms
31,136 KB
testcase_47 AC 388 ms
37,260 KB
testcase_48 AC 54 ms
24,064 KB
testcase_49 AC 54 ms
24,192 KB
testcase_50 AC 53 ms
23,936 KB
権限があれば一括ダウンロードができます

ソースコード

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