結果

問題 No.221 犯罪都市
ユーザー kokoa1046
提出日時 2017-09-08 11:03:43
言語 Scheme
(Gauche-0.9.15)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-11-07 04:46:56
合計ジャッジ時間 1,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

; Here your code !
(define n (read) )
(define guilty (*(/ 1 10000)n))
(define innocent (- 1 guilty))
(define capturedinnocent (/ innocent 100))
(define capturedguilty (*(/ guilty 100)99))
(print (inexact(/ capturedinnocent(+ capturedguilty capturedinnocent) )))
0