結果

問題 No.285 消費税2
ユーザー regeregeregerege
提出日時 2015-11-03 10:23:52
言語 F#
(F# 4.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 5,392 ms
コンパイル使用メモリ 160,596 KB
実行使用メモリ 25,052 KB
最終ジャッジ日時 2023-10-11 13:11:07
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
24,980 KB
testcase_01 AC 84 ms
22,768 KB
testcase_02 AC 85 ms
24,972 KB
testcase_03 AC 85 ms
20,956 KB
testcase_04 AC 86 ms
24,976 KB
testcase_05 AC 85 ms
22,980 KB
testcase_06 AC 86 ms
22,920 KB
testcase_07 AC 86 ms
22,924 KB
testcase_08 AC 86 ms
22,920 KB
testcase_09 AC 87 ms
20,932 KB
testcase_10 AC 89 ms
22,968 KB
testcase_11 AC 86 ms
24,856 KB
testcase_12 AC 85 ms
20,756 KB
testcase_13 AC 86 ms
24,976 KB
testcase_14 AC 86 ms
25,052 KB
testcase_15 AC 85 ms
22,808 KB
testcase_16 AC 86 ms
24,984 KB
testcase_17 AC 87 ms
22,960 KB
testcase_18 AC 86 ms
23,008 KB
testcase_19 AC 86 ms
22,896 KB
testcase_20 AC 85 ms
22,796 KB
testcase_21 AC 84 ms
20,924 KB
testcase_22 AC 85 ms
25,036 KB
testcase_23 AC 85 ms
22,872 KB
testcase_24 AC 85 ms
24,964 KB
testcase_25 AC 85 ms
22,880 KB
testcase_26 AC 84 ms
22,908 KB
testcase_27 AC 85 ms
22,824 KB
testcase_28 AC 85 ms
24,860 KB
testcase_29 AC 85 ms
24,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let ``No.285 消費税2`` () =
    let n = bigint.Parse(stdin.ReadLine())
    let s = (n * 108I).ToString()
    printfn "%s" (s.Insert(s.Length-2,"."))
``No.285 消費税2`` ()
0