結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー shiCanoko_oshiCanoko_o
提出日時 2019-05-14 22:57:01
言語 Perl
(5.38.2)
結果
AC  
実行時間 256 ms / 3,000 ms
コード長 273 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 56,448 KB
最終ジャッジ日時 2024-07-19 21:17:16
合計ジャッジ時間 3,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 8 ms
6,144 KB
testcase_08 AC 30 ms
9,984 KB
testcase_09 AC 56 ms
15,360 KB
testcase_10 AC 216 ms
46,336 KB
testcase_11 AC 216 ms
47,360 KB
testcase_12 AC 220 ms
48,256 KB
testcase_13 AC 226 ms
49,152 KB
testcase_14 AC 228 ms
50,176 KB
testcase_15 AC 233 ms
51,072 KB
testcase_16 AC 256 ms
56,448 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

my $total_number = <STDIN>;
chomp ($total_number);

my @numbers;

for (my $count = 0; $count<$total_number; $count++){
    my $number = <STDIN>;
    chomp ($number);
    push @numbers, $number;
}

#print "@numbers\n";

my $ans = 0;
$ans += $_ for @numbers;

print "$ans\n";
0