結果
| 問題 | No.445 得点 |
| コンテスト | |
| ユーザー |
neko_the_shadow
|
| 提出日時 | 2016-11-20 17:56:25 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 226 bytes |
| 記録 | |
| コンパイル時間 | 71 ms |
| コンパイル使用メモリ | 6,400 KB |
| 実行使用メモリ | 16,256 KB |
| 最終ジャッジ日時 | 2026-05-21 15:25:04 |
| 合計ジャッジ時間 | 3,166 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 WA * 4 |
ソースコード
(define (f n k)
(inexact->exact
(+ (* 50 n)
(floor (/ (* 50 n)
(+ 0.8 (* 0.2 k)))))))
(define (MAIN)
(let* ((a (read))
(b (read)))
(display (f a b))
(newline)))
(MAIN)
neko_the_shadow