結果

問題 No.285 消費税2
ユーザー tanson
提出日時 2025-09-19 02:00:08
言語 Standard ML
(MLton 20210117)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 689,920 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-09-19 02:00:13
合計ジャッジ時間 4,414 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 1 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

fun readLargeInt () =
    valOf (TextIO.scanStream (LargeInt.scan StringCvt.DEC) TextIO.stdIn)

val () =
    let
        val d = readLargeInt ()

        val ans = d * 108 div 100
    in
        print (LargeInt.toString ans ^ "\n")
    end
0