結果
問題 | No.858 わり算 |
ユーザー | bluemegane |
提出日時 | 2021-04-18 20:32:11 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 109,216 KB |
実行使用メモリ | 26,628 KB |
最終ジャッジ日時 | 2024-07-04 04:51:19 |
合計ジャッジ時間 | 1,633 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
18,944 KB |
testcase_01 | AC | 32 ms
18,560 KB |
testcase_02 | AC | 33 ms
18,560 KB |
testcase_03 | AC | 33 ms
18,816 KB |
testcase_04 | AC | 32 ms
18,816 KB |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
18,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Numerics; using System; public class Hello { public static BigInteger k = 10000000000; static void Main() { string[] line = Console.ReadLine().Trim().Split(' '); var a = BigInteger.Parse(line[0]); var b = BigInteger.Parse(line[1]); getAns(a, b); } static void getAns (BigInteger a, BigInteger b) { BigInteger k5 = k * k * k * k * k; var c = (a / b).ToString() + "."; BigInteger d = (a % b) *k5 / b; var ds = d.ToString(); var L = 50 - ds.Length; var ans = c + d.ToString() + new string('0', L); Console.WriteLine(ans); } }