結果

問題 No.882 約数倍数
ユーザー MiyamonYMiyamonY
提出日時 2019-10-13 02:26:07
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 19 ms / 500 ms
コード長 849 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 5,296 KB
実行使用メモリ 11,924 KB
最終ジャッジ日時 2023-08-20 05:15:52
合計ジャッジ時間 1,513 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,900 KB
testcase_01 AC 18 ms
11,720 KB
testcase_02 AC 18 ms
11,924 KB
testcase_03 AC 19 ms
11,760 KB
testcase_04 AC 19 ms
11,696 KB
testcase_05 AC 18 ms
11,796 KB
testcase_06 AC 17 ms
11,856 KB
testcase_07 AC 18 ms
11,800 KB
testcase_08 AC 18 ms
11,892 KB
testcase_09 AC 18 ms
11,924 KB
testcase_10 AC 18 ms
11,756 KB
testcase_11 AC 17 ms
11,812 KB
testcase_12 AC 19 ms
11,680 KB
testcase_13 AC 18 ms
11,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

;;; File:  main.scm
;; Author: ymiyamoto
;;
;; Created on Sun Oct 13 02:24:40 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 (a b))
  (print (if (= (remainder a b) 0) "YES" "NO")))

(solve)
0