結果

問題 No.56 消費税
ユーザー varrho
提出日時 2019-09-14 02:29:20
言語 Nim
(2.2.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 129 bytes
コンパイル時間 4,056 ms
コンパイル使用メモリ 65,408 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 16:30:43
合計ジャッジ時間 4,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils
var
  n: seq[int] = stdin.readline.split.map(parseInt)
  ans: int = n[0] + n[0] * n[1] div 100
echo ans
0