結果

問題 No.882 約数倍数
ユーザー ducktailducktail
提出日時 2019-09-13 22:02:25
言語 Scheme
(Gauche-0.9.13)
結果
AC  
実行時間 19 ms / 500 ms
コード長 119 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 5,400 KB
実行使用メモリ 11,784 KB
最終ジャッジ日時 2023-09-17 14:21:15
合計ジャッジ時間 1,378 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
11,668 KB
testcase_01 AC 19 ms
11,576 KB
testcase_02 AC 18 ms
11,512 KB
testcase_03 AC 19 ms
11,784 KB
testcase_04 AC 18 ms
11,780 KB
testcase_05 AC 19 ms
11,512 KB
testcase_06 AC 19 ms
11,596 KB
testcase_07 AC 19 ms
11,764 KB
testcase_08 AC 18 ms
11,536 KB
testcase_09 AC 19 ms
11,604 KB
testcase_10 AC 18 ms
11,580 KB
testcase_11 AC 18 ms
11,540 KB
testcase_12 AC 18 ms
11,512 KB
testcase_13 AC 18 ms
11,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (main args)
  (let* ([a (read)]
         [b (read)])
    (print (if (zero? (remainder a b)) "YES" "NO")))
  0)
0