Submission #1268286


Source Code Expand

(defun f (a b c n)
  (if (or (oddp a)
	  (oddp b)
	  (oddp c))
      n
      (f (/ (+ b c) 2)
	 (/ (+ a c) 2)
	 (/ (+ a b) 2)
	 (+ n 1))))

(defun ff (a b c)
  (if (and (= a b) (= b c))
      (if (evenp a)
	  -1
	  0)
      (f a b c 0)))

(let ((a (read))
      (b (read))
      (c (read)))
  (format t "~a~%" (ff a b c)))

Submission Info

Submission Time
Task A - Cookie Exchanges
User noorbeh
Language Common Lisp (SBCL 1.1.14)
Score 300
Code Size 342 Byte
Status AC
Exec Time 144 ms
Memory 14052 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 17
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt
All sample1.txt, sample2.txt, sample3.txt, in1.txt, in10.txt, in11.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, sample1.txt, sample2.txt, sample3.txt
Case Name Status Exec Time Memory
in1.txt AC 144 ms 14052 KB
in10.txt AC 17 ms 4320 KB
in11.txt AC 17 ms 4324 KB
in2.txt AC 17 ms 4328 KB
in3.txt AC 17 ms 4324 KB
in4.txt AC 17 ms 4324 KB
in5.txt AC 17 ms 4324 KB
in6.txt AC 17 ms 4324 KB
in7.txt AC 17 ms 4324 KB
in8.txt AC 17 ms 4324 KB
in9.txt AC 17 ms 4324 KB
sample1.txt AC 17 ms 4320 KB
sample2.txt AC 17 ms 4320 KB
sample3.txt AC 17 ms 4324 KB