結果
問題 | No.882 約数倍数 |
ユーザー | MiyamonY |
提出日時 | 2019-10-13 02:26:07 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
AC
|
実行時間 | 24 ms / 500 ms |
コード長 | 849 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-05-07 12:37:43 |
合計ジャッジ時間 | 1,451 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
15,872 KB |
testcase_01 | AC | 24 ms
15,872 KB |
testcase_02 | AC | 24 ms
16,000 KB |
testcase_03 | AC | 24 ms
16,128 KB |
testcase_04 | AC | 23 ms
15,872 KB |
testcase_05 | AC | 23 ms
15,872 KB |
testcase_06 | AC | 23 ms
15,872 KB |
testcase_07 | AC | 23 ms
16,000 KB |
testcase_08 | AC | 22 ms
15,872 KB |
testcase_09 | AC | 23 ms
15,872 KB |
testcase_10 | AC | 24 ms
16,128 KB |
testcase_11 | AC | 23 ms
16,128 KB |
testcase_12 | AC | 23 ms
15,872 KB |
testcase_13 | AC | 23 ms
15,872 KB |
ソースコード
;;; 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)