結果

問題 No.485 方程式のお勉強
ユーザー kokoa1046
提出日時 2017-09-03 21:37:05
言語 Scheme
(Gauche-0.9.15)
結果
RE  
実行時間 -
コード長 94 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-11-06 20:08:00
合計ジャッジ時間 1,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

(define a (read))
(define b (read))
(print if((integer? (/ b a)) (print (/ b a))(print "NO")))
0