結果

問題 No.601 Midpoint Erase
ユーザー ducktailducktail
提出日時 2017-12-21 22:38:01
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-06-02 08:27:44
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
15,872 KB
testcase_01 AC 21 ms
16,000 KB
testcase_02 AC 21 ms
16,000 KB
testcase_03 AC 127 ms
20,736 KB
testcase_04 AC 136 ms
20,864 KB
testcase_05 AC 105 ms
20,864 KB
testcase_06 AC 70 ms
20,736 KB
testcase_07 AC 127 ms
20,736 KB
testcase_08 AC 116 ms
20,608 KB
testcase_09 AC 136 ms
20,608 KB
testcase_10 AC 47 ms
17,792 KB
testcase_11 AC 183 ms
20,864 KB
testcase_12 AC 91 ms
20,736 KB
testcase_13 AC 20 ms
16,000 KB
testcase_14 AC 20 ms
16,000 KB
testcase_15 AC 19 ms
15,744 KB
testcase_16 AC 20 ms
15,872 KB
testcase_17 AC 20 ms
15,872 KB
testcase_18 AC 19 ms
16,000 KB
testcase_19 AC 19 ms
15,872 KB
testcase_20 AC 19 ms
15,872 KB
testcase_21 AC 20 ms
15,872 KB
testcase_22 AC 20 ms
15,744 KB
testcase_23 AC 19 ms
15,872 KB
testcase_24 AC 20 ms
15,872 KB
testcase_25 AC 20 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (read-point n)
  (let loop ([ee 0]
             [eo 0]
             [oe 0]
             [oo 0]
             [c n])
    (if (zero? c)
        (values ee eo oe oo)
        (let* ([x (read)]
               [y (read)])
          (cond [(and (even? x) (even? y)) (loop (+ ee 1) eo oe oo (- c 1))]
                [(and (even? x) (odd? y)) (loop ee (+ eo 1) oe oo (- c 1))]
                [(and (odd? x) (even? y)) (loop ee eo (+ oe 1) oo (- c 1))]
                [else (loop ee eo oe (+ oo 1) (- c 1))])
          ))))

(define (main args)
  (let ([n (read)])
    (print
     (receive
      (ee eo oe oo)
      (read-point n)
      (let ([c (+ (quotient ee 2)
                  (quotient eo 2)
                  (quotient oe 2)
                  (quotient oo 2))])
        (if (odd? c) "Alice" "Bob")))))
  0)
0