結果
問題 | No.892 タピオカ |
ユーザー | MiyamonY |
提出日時 | 2019-09-28 23:44:50 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,152 KB |
testcase_01 | AC | 27 ms
17,152 KB |
testcase_02 | AC | 27 ms
17,152 KB |
testcase_03 | AC | 27 ms
17,024 KB |
testcase_04 | AC | 28 ms
17,024 KB |
testcase_05 | AC | 28 ms
17,152 KB |
testcase_06 | AC | 27 ms
17,024 KB |
testcase_07 | AC | 27 ms
17,152 KB |
testcase_08 | AC | 28 ms
17,024 KB |
ソースコード
;;; 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)