結果

問題 No.810 割った余りの個数
ユーザー ebicochineal
提出日時 2019-05-21 15:40:43
言語 Scheme
(Gauche-0.9.15)
結果
RE  
実行時間 -
コード長 65 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-09-17 09:01:26
合計ジャッジ時間 2,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

(let ((l(read)) (r(read)) (m(read)))
    (write (min m r-l+1))
)
0