結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー roiti46roiti46
提出日時 2015-02-13 04:16:30
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 95 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 91,120 KB
最終ジャッジ日時 2023-08-21 12:59:24
合計ジャッジ時間 8,109 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
89,036 KB
testcase_01 AC 211 ms
89,032 KB
testcase_02 AC 211 ms
89,064 KB
testcase_03 AC 213 ms
88,836 KB
testcase_04 AC 218 ms
88,720 KB
testcase_05 AC 216 ms
89,076 KB
testcase_06 AC 220 ms
88,716 KB
testcase_07 AC 219 ms
89,156 KB
testcase_08 AC 217 ms
88,856 KB
testcase_09 AC 236 ms
91,120 KB
testcase_10 AC 213 ms
89,120 KB
testcase_11 AC 215 ms
89,192 KB
testcase_12 AC 216 ms
89,048 KB
testcase_13 AC 214 ms
88,800 KB
testcase_14 AC 213 ms
89,080 KB
testcase_15 AC 217 ms
89,196 KB
testcase_16 AC 213 ms
88,876 KB
testcase_17 AC 211 ms
89,020 KB
testcase_18 AC 217 ms
89,032 KB
testcase_19 AC 214 ms
89,044 KB
testcase_20 AC 213 ms
88,848 KB
testcase_21 AC 218 ms
88,848 KB
testcase_22 AC 210 ms
89,116 KB
testcase_23 AC 214 ms
89,104 KB
testcase_24 AC 214 ms
88,748 KB
testcase_25 WA -
testcase_26 AC 220 ms
88,988 KB
testcase_27 AC 220 ms
89,128 KB
testcase_28 AC 213 ms
89,116 KB
testcase_29 AC 211 ms
89,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
N = int(input())
print(round(sum(Decimal(input()) for _ in range(N)),10))
0