結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー colognecologne
提出日時 2022-01-26 19:26:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 271 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,284 KB
最終ジャッジ日時 2024-07-22 16:59:02
合計ジャッジ時間 5,132 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
80,128 KB
testcase_01 AC 102 ms
80,256 KB
testcase_02 AC 98 ms
80,052 KB
testcase_03 AC 99 ms
80,224 KB
testcase_04 AC 102 ms
80,000 KB
testcase_05 AC 100 ms
80,048 KB
testcase_06 AC 99 ms
80,128 KB
testcase_07 AC 103 ms
80,196 KB
testcase_08 AC 102 ms
80,256 KB
testcase_09 AC 107 ms
80,256 KB
testcase_10 AC 99 ms
80,128 KB
testcase_11 AC 99 ms
80,172 KB
testcase_12 AC 99 ms
80,128 KB
testcase_13 AC 98 ms
80,120 KB
testcase_14 AC 96 ms
80,128 KB
testcase_15 AC 107 ms
80,236 KB
testcase_16 AC 97 ms
80,172 KB
testcase_17 AC 105 ms
80,176 KB
testcase_18 AC 103 ms
80,116 KB
testcase_19 AC 105 ms
80,000 KB
testcase_20 AC 104 ms
79,872 KB
testcase_21 AC 105 ms
80,256 KB
testcase_22 AC 102 ms
80,124 KB
testcase_23 AC 109 ms
80,248 KB
testcase_24 AC 102 ms
80,028 KB
testcase_25 AC 101 ms
80,256 KB
testcase_26 AC 102 ms
79,888 KB
testcase_27 AC 99 ms
79,784 KB
testcase_28 AC 99 ms
80,284 KB
testcase_29 AC 106 ms
80,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import decimal


def input(): return sys.stdin.readline().rstrip()


def main():
    decimal.getcontext().prec = 100
    N = int(input())
    A = [decimal.Decimal(input()) for i in range(N)]

    print(f'{sum(A):.10f}')


if __name__ == '__main__':
    main()
0