結果

問題 No.892 タピオカ
ユーザー MiyamonYMiyamonY
提出日時 2019-09-28 23:44:50
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 924 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-04-14 07:07:18
合計ジャッジ時間 1,292 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
17,024 KB
testcase_01 AC 39 ms
17,024 KB
testcase_02 AC 39 ms
17,152 KB
testcase_03 AC 38 ms
17,152 KB
testcase_04 AC 38 ms
17,024 KB
testcase_05 AC 37 ms
17,280 KB
testcase_06 AC 38 ms
17,024 KB
testcase_07 AC 37 ms
17,280 KB
testcase_08 AC 39 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

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