結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kemunikukemuniku
提出日時 2022-03-06 20:11:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 150 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 87,108 KB
実行使用メモリ 90,764 KB
最終ジャッジ日時 2023-09-29 23:01:50
合計ジャッジ時間 9,201 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
88,944 KB
testcase_01 AC 228 ms
88,836 KB
testcase_02 AC 228 ms
88,896 KB
testcase_03 AC 248 ms
89,048 KB
testcase_04 AC 251 ms
89,044 KB
testcase_05 AC 258 ms
89,024 KB
testcase_06 AC 248 ms
88,936 KB
testcase_07 AC 239 ms
88,824 KB
testcase_08 AC 233 ms
88,892 KB
testcase_09 AC 243 ms
90,764 KB
testcase_10 AC 242 ms
88,892 KB
testcase_11 AC 250 ms
88,988 KB
testcase_12 AC 248 ms
89,044 KB
testcase_13 AC 244 ms
88,744 KB
testcase_14 AC 238 ms
88,916 KB
testcase_15 AC 245 ms
88,828 KB
testcase_16 AC 239 ms
89,084 KB
testcase_17 AC 239 ms
88,968 KB
testcase_18 AC 245 ms
88,764 KB
testcase_19 AC 230 ms
88,968 KB
testcase_20 AC 234 ms
88,816 KB
testcase_21 AC 236 ms
88,972 KB
testcase_22 AC 233 ms
88,896 KB
testcase_23 AC 234 ms
88,932 KB
testcase_24 AC 229 ms
89,040 KB
testcase_25 AC 230 ms
88,812 KB
testcase_26 AC 231 ms
88,904 KB
testcase_27 AC 232 ms
88,892 KB
testcase_28 AC 237 ms
89,204 KB
testcase_29 AC 245 ms
88,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
import decimal
sum = decimal.Decimal(0)
for i in range(N):
    A = decimal.Decimal(input())
    sum += A
print('{:.10f}'.format(sum))
0