結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー beetbeet
提出日時 2018-11-29 17:37:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 86,840 KB
実行使用メモリ 90,788 KB
最終ジャッジ日時 2023-09-09 05:55:51
合計ジャッジ時間 9,998 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
88,640 KB
testcase_01 AC 220 ms
88,832 KB
testcase_02 AC 217 ms
88,668 KB
testcase_03 AC 216 ms
88,896 KB
testcase_04 AC 221 ms
88,740 KB
testcase_05 AC 218 ms
88,744 KB
testcase_06 AC 219 ms
88,664 KB
testcase_07 AC 220 ms
88,652 KB
testcase_08 AC 223 ms
88,784 KB
testcase_09 AC 228 ms
90,788 KB
testcase_10 AC 217 ms
88,784 KB
testcase_11 AC 217 ms
88,604 KB
testcase_12 AC 219 ms
88,904 KB
testcase_13 AC 224 ms
88,720 KB
testcase_14 AC 220 ms
88,788 KB
testcase_15 AC 222 ms
88,724 KB
testcase_16 AC 222 ms
88,768 KB
testcase_17 AC 215 ms
88,752 KB
testcase_18 AC 222 ms
88,724 KB
testcase_19 AC 227 ms
88,696 KB
testcase_20 AC 219 ms
88,756 KB
testcase_21 AC 215 ms
88,872 KB
testcase_22 AC 213 ms
88,744 KB
testcase_23 AC 222 ms
88,600 KB
testcase_24 AC 219 ms
88,672 KB
testcase_25 WA -
testcase_26 AC 216 ms
88,744 KB
testcase_27 AC 222 ms
88,860 KB
testcase_28 AC 218 ms
88,780 KB
testcase_29 AC 225 ms
88,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
n = int(input())
x = Decimal('0.0000000000')
for i in range(0, n):
    x += Decimal(input())
print(str(x))
0