結果

問題 No.822 Bitwise AND
ユーザー keidenkeiden
提出日時 2024-09-22 19:21:21
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 1,775 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-09-22 19:21:38
合計ジャッジ時間 17,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,771 ms
23,168 KB
testcase_01 AC 125 ms
23,040 KB
testcase_02 AC 96 ms
23,040 KB
testcase_03 AC 84 ms
23,040 KB
testcase_04 AC 1,759 ms
23,040 KB
testcase_05 AC 858 ms
23,040 KB
testcase_06 AC 1,533 ms
23,040 KB
testcase_07 AC 1,775 ms
23,040 KB
testcase_08 AC 1,763 ms
23,040 KB
testcase_09 AC 1,520 ms
23,040 KB
testcase_10 AC 87 ms
23,168 KB
testcase_11 AC 85 ms
23,168 KB
testcase_12 AC 1,719 ms
22,912 KB
testcase_13 AC 96 ms
23,040 KB
testcase_14 AC 84 ms
23,040 KB
testcase_15 AC 1,009 ms
23,040 KB
testcase_16 AC 101 ms
23,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.bitwise)

(define (calculate n k)
  (if (< n k)
    -1
    (let loop-n ((x 0) (ans 0))
      (if (= x 123456)
        ans
        (loop-n (+ x 1)
          (+ ans (let loop-k ((current-k 0) (count 0))
            (if (> current-k k)
              count
              (let ((y (+ x current-k)))
                (if (= (bitwise-and x y) n)
                  (loop-k (+ current-k 1) (+ count 1))
                  (loop-k (+ current-k 1) count)))))))))))

(define yuki812
  (let*
    (
      (n (read))
      (k (read))
      (a (calculate n k))
    )
    (if (= a -1)
      (display "INF\n")
      (print a)
    )
  )
)
0