結果

問題 No.285 消費税2
ユーザー mkanenobu
提出日時 2018-09-20 11:39:53
言語 Nim
(2.2.0)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 3,233 ms
コンパイル使用メモリ 66,760 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 04:40:31
合計ジャッジ時間 4,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'algorithm' [UnusedImport]

ソースコード

diff #

import sequtils, strutils, algorithm, math

var
  d = readLine(stdin).parseInt
echo round(float(d) * 1.08, 2)
0