結果

問題 No.285 消費税2
ユーザー toshiro_yanagi
提出日時 2018-06-11 13:57:23
言語 Nim
(2.2.0)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 3,107 ms
コンパイル使用メモリ 66,160 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 13:31:02
合計ジャッジ時間 4,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 18) Warning: imported and not used: 'sequtils' [UnusedImport]

ソースコード

diff #

import strutils, sequtils

let
  D = stdin.readLine.parseInt
  D108 = D * 108

stdout.write D108 div 100
echo (D108 mod 100 / 100).repr[1 .. ^1]
0