結果

問題 No.2024 Xer
ユーザー keidenkeiden
提出日時 2024-09-29 20:30:33
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 40,224 KB
最終ジャッジ日時 2024-09-29 20:31:03
合計ジャッジ時間 20,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
24,064 KB
testcase_01 AC 62 ms
24,192 KB
testcase_02 AC 62 ms
23,936 KB
testcase_03 AC 60 ms
24,064 KB
testcase_04 AC 62 ms
23,936 KB
testcase_05 AC 61 ms
24,064 KB
testcase_06 AC 62 ms
24,064 KB
testcase_07 AC 1,052 ms
39,992 KB
testcase_08 AC 754 ms
40,032 KB
testcase_09 AC 1,065 ms
40,056 KB
testcase_10 AC 770 ms
40,128 KB
testcase_11 AC 326 ms
32,144 KB
testcase_12 AC 556 ms
37,092 KB
testcase_13 AC 614 ms
37,160 KB
testcase_14 AC 1,007 ms
39,844 KB
testcase_15 AC 450 ms
32,148 KB
testcase_16 AC 692 ms
37,064 KB
testcase_17 AC 397 ms
32,156 KB
testcase_18 AC 379 ms
32,136 KB
testcase_19 AC 953 ms
39,752 KB
testcase_20 AC 631 ms
37,128 KB
testcase_21 AC 1,043 ms
39,976 KB
testcase_22 AC 1,072 ms
39,920 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 67 ms
25,088 KB
testcase_28 AC 65 ms
24,448 KB
testcase_29 AC 65 ms
24,704 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 90 ms
25,728 KB
testcase_33 AC 72 ms
25,472 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 63 ms
24,064 KB
testcase_40 AC 64 ms
24,192 KB
testcase_41 AC 69 ms
24,960 KB
testcase_42 WA -
testcase_43 AC 71 ms
25,344 KB
testcase_44 AC 87 ms
25,728 KB
testcase_45 AC 573 ms
37,108 KB
testcase_46 AC 174 ms
31,428 KB
testcase_47 AC 464 ms
37,044 KB
testcase_48 AC 62 ms
24,064 KB
testcase_49 AC 61 ms
23,936 KB
testcase_50 AC 62 ms
24,064 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 ((flag #t) (i 0))
      (if (= i (- n 1))
        (display (if flag "Yes\n" "No\n"))
        (cond
          ((>= (vector-ref an i) (logxor (vector-ref an (+ i 1)) x)) (loop #f (+ i 1)))
          ((<= (vector-ref an (+ i 1)) (logxor (vector-ref an i) x)) (loop #f (+ i 1)))
          (else (loop #t (+ i 1))))))))
0