結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー なおなお
提出日時 2014-11-25 19:08:28
言語 Perl
(5.38.2)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 212 bytes
コンパイル時間 1,098 ms
コンパイル使用メモリ 15,616 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-07-22 16:24:26
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
15,488 KB
testcase_01 AC 69 ms
15,744 KB
testcase_02 AC 64 ms
15,616 KB
testcase_03 AC 64 ms
15,488 KB
testcase_04 AC 67 ms
15,488 KB
testcase_05 AC 67 ms
15,744 KB
testcase_06 AC 68 ms
15,744 KB
testcase_07 AC 68 ms
15,744 KB
testcase_08 AC 68 ms
15,488 KB
testcase_09 AC 70 ms
15,616 KB
testcase_10 AC 61 ms
15,616 KB
testcase_11 AC 64 ms
15,744 KB
testcase_12 AC 67 ms
15,744 KB
testcase_13 AC 63 ms
15,744 KB
testcase_14 AC 66 ms
15,616 KB
testcase_15 AC 68 ms
15,744 KB
testcase_16 AC 64 ms
15,616 KB
testcase_17 AC 65 ms
15,616 KB
testcase_18 AC 69 ms
15,744 KB
testcase_19 AC 66 ms
15,616 KB
testcase_20 AC 63 ms
15,744 KB
testcase_21 AC 66 ms
15,744 KB
testcase_22 AC 66 ms
15,616 KB
testcase_23 AC 70 ms
15,744 KB
testcase_24 AC 67 ms
15,744 KB
testcase_25 AC 64 ms
15,616 KB
testcase_26 AC 63 ms
15,616 KB
testcase_27 AC 63 ms
15,616 KB
testcase_28 AC 63 ms
15,744 KB
testcase_29 AC 67 ms
15,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/perl
use strict;
use Math::BigFloat;
Math::BigFloat->accuracy(30);

my $N = <>;
my $sum = 0;
for(1..$N){
    $sum += Math::BigFloat->new(scalar <>);
}
print $sum->bfround(-10)->bstr(),"\n";
0