結果

問題 No.892 タピオカ
ユーザー MiyamonY
提出日時 2019-09-28 23:44:50
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 29 ms / 1,000 ms
コード長 924 bytes
コンパイル時間 20 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-10-03 04:20:25
合計ジャッジ時間 730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

;;; File:  main.scm
;; Author: ymiyamoto
;;
;; Created on Sat Sep 28 23:42:04 2019
;;
(define-syntax read-number
  (syntax-rules ()
    ((_ nums)
     (define-values nums
       (apply values (map string->number (string-split (read-line) #\space)))))))

(define-syntax read-numbers
  (syntax-rules ()
    ((_ as)
     (define as (map string->number (string-split (read-line) #\space))))
    ((_ as n)
     (define as (map (lambda (_) (map string->number (string-split (read-line) #\space))) (iota n))))))

(define-syntax prlist
  (syntax-rules ()
    ((_ lis)
     (print (string-join (map number->string lis) " ")))))

(define-syntax 1+ (syntax-rules () ((_ x) (+ x 1))))

(define-syntax 1- (syntax-rules () ((_ x) (- x 1))))

(define MOD 1000000007)

(define (solve)
  (read-number (a1 b1 a2 b2 a3 b3))

  (print (if (even? (+ (expt-mod a1 b1 2) (expt-mod a2 b2 2) (expt-mod a3 b3 2)))
	     ":-)"
	     ":-(")))

(solve)
0