結果

問題 No.445 得点
ユーザー varrho
提出日時 2019-09-27 21:13:47
言語 Nim
(2.2.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 3,335 ms
コンパイル使用メモリ 67,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 20:24:19
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils
proc f(n: seq[int]): int =
  result = 50 * n[0] + (50 * n[0].float / (0.8 + 0.2 * n[1].float)).int
let
  n: seq[int] = stdin.readline.split.map(parseInt)
  ans: int = f(n)
echo ans
0