結果

問題 No.450 ベー君のシャトルラン
ユーザー YetAnother_ykYetAnother_yk
提出日時 2016-12-02 00:12:00
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 302 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 12,448 KB
最終ジャッジ日時 2024-05-05 17:17:28
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,392 KB
testcase_01 AC 3 ms
5,888 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 3 ms
6,016 KB
testcase_04 AC 2 ms
5,888 KB
testcase_05 AC 3 ms
6,016 KB
testcase_06 AC 3 ms
6,016 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 2 ms
5,888 KB
testcase_09 AC 3 ms
6,016 KB
testcase_10 AC 3 ms
5,888 KB
testcase_11 AC 3 ms
5,760 KB
testcase_12 AC 3 ms
5,760 KB
testcase_13 AC 3 ms
6,016 KB
testcase_14 AC 3 ms
5,760 KB
testcase_15 AC 3 ms
5,888 KB
testcase_16 AC 3 ms
5,888 KB
testcase_17 AC 3 ms
5,888 KB
testcase_18 AC 3 ms
5,760 KB
testcase_19 AC 3 ms
5,760 KB
testcase_20 AC 2 ms
5,888 KB
testcase_21 TLE -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

my $v = <STDIN>;
chomp $v;
my @v = split(/\s/, $v);

my $d = <STDIN>;
chomp $d;

my $w = <STDIN>;
chomp $w;

my $total = 0;

my $i = 1;
while ($d > 10**-6) {
    my $t = $d/($v[$i] + $w);
    $total += $w * $t;
    
    $d = $d - ($v[0] + $v[1]) * $t;
    
    $i++;
    $i %= 2;
}

print $total, "\n";
0