結果
問題 | No.450 ベー君のシャトルラン |
ユーザー | 14番 |
提出日時 | 2016-12-19 13:45:44 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,893 bytes |
コンパイル時間 | 5,540 ms |
コンパイル使用メモリ | 114,636 KB |
実行使用メモリ | 814,892 KB |
最終ジャッジ日時 | 2024-05-08 06:58:08 |
合計ジャッジ時間 | 5,130 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
19,200 KB |
testcase_01 | AC | 31 ms
19,328 KB |
testcase_02 | AC | 31 ms
19,200 KB |
testcase_03 | AC | 31 ms
19,456 KB |
testcase_04 | AC | 30 ms
19,328 KB |
testcase_05 | AC | 30 ms
19,328 KB |
testcase_06 | AC | 30 ms
19,328 KB |
testcase_07 | AC | 31 ms
19,072 KB |
testcase_08 | AC | 30 ms
19,200 KB |
testcase_09 | AC | 31 ms
19,328 KB |
testcase_10 | AC | 31 ms
19,328 KB |
testcase_11 | AC | 31 ms
19,200 KB |
testcase_12 | AC | 32 ms
19,328 KB |
testcase_13 | AC | 33 ms
19,456 KB |
testcase_14 | AC | 31 ms
19,200 KB |
testcase_15 | AC | 31 ms
19,200 KB |
testcase_16 | AC | 31 ms
19,456 KB |
testcase_17 | AC | 31 ms
19,584 KB |
testcase_18 | AC | 31 ms
19,328 KB |
testcase_19 | AC | 31 ms
19,328 KB |
testcase_20 | AC | 33 ms
19,328 KB |
testcase_21 | MLE | - |
testcase_22 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Text; using System.Collections.Generic; public class Program { public void Proc() { Reader.IsDebug = false; decimal[] inpt = Reader.ReadLine().Split(' ').Select(a=>decimal.Parse(a)).ToArray(); this.V1 = inpt[0]; this.V2 = inpt[1]; this.D = decimal.Parse(Reader.ReadLine()); this.W = decimal.Parse(Reader.ReadLine()); decimal ans = Math.Round(GetAns(0, D, true), 7); Console.WriteLine(ans); } private decimal GetAns(decimal v1Pos, decimal v2Pos, bool isLeft) { decimal diff = v2Pos - v1Pos; if(diff < 0.000000001m) { return diff; } decimal pos = 0; if(isLeft) { pos = diff / (V2 + W) * W; decimal nextV1 = pos / W * V1; decimal nextV2 = pos; return GetAns(nextV1, nextV2, !isLeft) + pos; } else { decimal mv = (diff / (V1 + W) * W); decimal nextV1 = v2Pos - mv; decimal nextV2 = v2Pos - (mv / W * V2); return GetAns(nextV1, nextV2, !isLeft) + mv; } } private decimal V1; private decimal V2; private decimal D; private decimal W; public class Reader { public static bool IsDebug = true; private static System.IO.StringReader SReader; private static string InitText = @" 90 568 5019 870 "; public static string ReadLine() { if(IsDebug) { if(SReader == null) { SReader = new System.IO.StringReader(InitText.Trim()); } return SReader.ReadLine(); } else { return Console.ReadLine(); } } } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } }