結果

問題 No.7 プライムナンバーゲーム
ユーザー MiyamonYMiyamonY
提出日時 2019-09-04 11:30:08
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-10-01 16:23:58
合計ジャッジ時間 4,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
29,312 KB
testcase_01 AC 116 ms
29,220 KB
testcase_02 AC 244 ms
29,632 KB
testcase_03 AC 127 ms
29,312 KB
testcase_04 AC 119 ms
29,440 KB
testcase_05 AC 116 ms
29,184 KB
testcase_06 AC 161 ms
29,184 KB
testcase_07 AC 148 ms
29,312 KB
testcase_08 AC 129 ms
29,312 KB
testcase_09 AC 179 ms
29,184 KB
testcase_10 AC 114 ms
29,320 KB
testcase_11 AC 144 ms
29,196 KB
testcase_12 AC 208 ms
29,208 KB
testcase_13 AC 217 ms
29,312 KB
testcase_14 AC 247 ms
29,696 KB
testcase_15 AC 246 ms
29,568 KB
testcase_16 AC 235 ms
29,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use math.prime)

(let ((n (read)))
  (define primes (filter small-prime? (iota (+ n 1))))

  (define result
    (let loop ((i 0)
	       (vec (make-vector (+ n 1) 0)))
      (cond ((= i (+ n 1))
	     (vector-ref vec n))
	    (else
	     (let1 winner
		   (if (<= i 3)
		       2
		       (let check-win ((ps primes))
			 (if (null? ps)
			     2
			     (let1 pred (- i (car ps))
				   (if (and (>= pred 2) (= (vector-ref vec pred) 2))
				       1
				       (check-win (cdr ps)))))))
		   (vector-set! vec i winner)
		   (loop (+ i 1) vec))))))

  (print (if (= result 1) "Win" "Lose")))
0