結果
問題 | No.456 Millions of Submits! |
ユーザー | くれちー |
提出日時 | 2016-12-07 23:12:15 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,118 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 110,916 KB |
実行使用メモリ | 32,064 KB |
最終ジャッジ日時 | 2024-06-23 03:37:54 |
合計ジャッジ時間 | 7,894 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
32,064 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; class Program { static void Main() { var m = int.Parse(Console.ReadLine()); var a = new List<int>(); var b = new List<int>(); var t = new List<double>(); double ans; for (int i = 0; i < m; i++) { var str = Console.ReadLine().Split(' '); a.Add(int.Parse(str[0])); b.Add(int.Parse(str[1])); t.Add(double.Parse(str[2])); if (b[i] == 0) ans = Math.Pow(t[i], 1.0 / a[i]); else { for (double n = 1.0; ;) { var tmp1 = Math.Pow(t[i], 1.0 / b[i]); var tmp2 = Math.Pow(n, (double)a[i] / b[i]); var tmp3 = n - Math.Exp(tmp1 / tmp2); if (Math.Abs(tmp3) < 10e-9) { ans = n; break; } else n -= tmp3 / 2.0; } } Console.WriteLine("{0:.##########}", ans); } } }