結果

問題 No.285 消費税2
ユーザー niyarin
提出日時 2016-07-20 00:50:24
言語 Scheme
(Gauche-0.9.15)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-10-15 17:27:41
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

(begin
  (display (let* ((D (read))) 
                (let ((a (quotient (* D 108) 100 ))(b (modulo (* D 108) 100 )))
                  (string-append (number->string a ) "." (number->string b))))) 
  (newline)
)
0