結果

問題 No.810 割った余りの個数
ユーザー ebicochineal
提出日時 2019-05-21 15:42:38
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 72 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-09-17 09:01:28
合計ジャッジ時間 1,829 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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