結果

問題 No.169 何分かかるの!?
ユーザー ldsyb
提出日時 2016-05-20 14:28:28
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 30 ms / 1,000 ms
コード長 86 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-10-06 11:20:47
合計ジャッジ時間 1,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

(define k (read))
(define s (read))
(display (quotient (* 100 s) (- 100 k)))
(newline)
0