結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー raven7959raven7959
提出日時 2022-08-28 17:50:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 80,216 KB
最終ジャッジ日時 2024-10-15 15:45:12
合計ジャッジ時間 5,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
80,032 KB
testcase_01 AC 118 ms
80,008 KB
testcase_02 AC 117 ms
79,768 KB
testcase_03 AC 116 ms
80,048 KB
testcase_04 AC 122 ms
80,040 KB
testcase_05 AC 121 ms
80,064 KB
testcase_06 AC 120 ms
80,216 KB
testcase_07 AC 120 ms
79,860 KB
testcase_08 AC 122 ms
79,908 KB
testcase_09 AC 125 ms
80,028 KB
testcase_10 AC 118 ms
79,972 KB
testcase_11 AC 120 ms
80,116 KB
testcase_12 AC 119 ms
80,116 KB
testcase_13 AC 119 ms
80,104 KB
testcase_14 AC 119 ms
79,764 KB
testcase_15 AC 121 ms
80,056 KB
testcase_16 AC 117 ms
80,056 KB
testcase_17 AC 119 ms
79,780 KB
testcase_18 AC 121 ms
79,844 KB
testcase_19 AC 118 ms
79,880 KB
testcase_20 AC 116 ms
80,080 KB
testcase_21 AC 118 ms
79,908 KB
testcase_22 AC 119 ms
80,196 KB
testcase_23 AC 123 ms
80,004 KB
testcase_24 AC 118 ms
79,780 KB
testcase_25 AC 117 ms
79,572 KB
testcase_26 AC 117 ms
80,016 KB
testcase_27 AC 116 ms
80,000 KB
testcase_28 AC 116 ms
80,188 KB
testcase_29 AC 119 ms
79,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
N=int(input())
ans=Decimal(0)
for _ in range(N):
    x=Decimal(input())
    ans+=x
ans=str(ans)
if "." in ans:
    p=ans.index(".")
    ans+="0"*(10-(len(ans)-p-1))
else:
    ans+="."+"0"*10
print(ans)
0