結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー あかりきあかりき
提出日時 2021-02-09 11:59:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 5,000 ms
コード長 120 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 90,908 KB
最終ジャッジ日時 2023-09-29 22:58:57
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
88,812 KB
testcase_01 AC 181 ms
88,824 KB
testcase_02 AC 178 ms
88,800 KB
testcase_03 AC 185 ms
88,976 KB
testcase_04 AC 182 ms
88,868 KB
testcase_05 AC 178 ms
88,860 KB
testcase_06 AC 186 ms
88,916 KB
testcase_07 AC 184 ms
88,792 KB
testcase_08 AC 184 ms
88,916 KB
testcase_09 AC 209 ms
90,908 KB
testcase_10 AC 187 ms
88,832 KB
testcase_11 AC 183 ms
88,900 KB
testcase_12 AC 183 ms
88,792 KB
testcase_13 AC 188 ms
88,724 KB
testcase_14 AC 188 ms
88,720 KB
testcase_15 AC 196 ms
88,984 KB
testcase_16 AC 183 ms
88,828 KB
testcase_17 AC 182 ms
88,800 KB
testcase_18 AC 194 ms
88,944 KB
testcase_19 AC 185 ms
88,992 KB
testcase_20 AC 184 ms
88,832 KB
testcase_21 AC 188 ms
89,076 KB
testcase_22 AC 183 ms
88,960 KB
testcase_23 AC 181 ms
88,836 KB
testcase_24 AC 187 ms
88,792 KB
testcase_25 AC 186 ms
88,868 KB
testcase_26 AC 186 ms
88,868 KB
testcase_27 AC 177 ms
88,792 KB
testcase_28 AC 185 ms
88,832 KB
testcase_29 AC 190 ms
88,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
n=int(input())
ans=0
for i in range(n):
  ans+=Decimal(input())
print('{:.10f}'.format(ans))
0