結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー fujita_kyouheifujita_kyouhei
提出日時 2014-12-26 15:46:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 138 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 30,972 KB
実行使用メモリ 31,600 KB
最終ジャッジ日時 2024-06-12 23:45:52
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,224 KB
testcase_01 AC 39 ms
30,876 KB
testcase_02 AC 38 ms
31,256 KB
testcase_03 AC 39 ms
31,224 KB
testcase_04 AC 41 ms
31,244 KB
testcase_05 AC 42 ms
31,100 KB
testcase_06 AC 42 ms
30,876 KB
testcase_07 AC 42 ms
31,180 KB
testcase_08 AC 43 ms
31,512 KB
testcase_09 AC 42 ms
31,212 KB
testcase_10 AC 41 ms
30,972 KB
testcase_11 AC 41 ms
31,224 KB
testcase_12 AC 40 ms
31,412 KB
testcase_13 AC 40 ms
31,240 KB
testcase_14 AC 39 ms
31,540 KB
testcase_15 AC 40 ms
31,348 KB
testcase_16 AC 40 ms
31,372 KB
testcase_17 AC 40 ms
31,216 KB
testcase_18 AC 39 ms
31,424 KB
testcase_19 AC 39 ms
31,088 KB
testcase_20 AC 38 ms
31,292 KB
testcase_21 AC 41 ms
30,976 KB
testcase_22 AC 40 ms
31,476 KB
testcase_23 AC 41 ms
31,044 KB
testcase_24 AC 41 ms
31,428 KB
testcase_25 AC 40 ms
31,164 KB
testcase_26 AC 41 ms
31,600 KB
testcase_27 AC 41 ms
30,940 KB
testcase_28 AC 42 ms
31,056 KB
testcase_29 AC 42 ms
31,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?PHP
$ans=0;
fscanf(STDIN,"%d",$n);
for($i=0;$i<$n;$i++)
{
 fscanf(STDIN,"%s",$a[$i]);

 $ans=bcadd($ans,$a[$i],10);
}


echo"$ans\n";
?>
0