結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kk
提出日時 2020-09-24 01:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 80,460 KB
最終ジャッジ日時 2024-07-22 16:54:12
合計ジャッジ時間 5,302 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
80,160 KB
testcase_01 AC 123 ms
79,892 KB
testcase_02 AC 122 ms
80,152 KB
testcase_03 AC 125 ms
79,764 KB
testcase_04 AC 127 ms
80,240 KB
testcase_05 AC 125 ms
80,228 KB
testcase_06 AC 126 ms
80,180 KB
testcase_07 AC 124 ms
80,028 KB
testcase_08 AC 126 ms
80,184 KB
testcase_09 AC 127 ms
79,892 KB
testcase_10 AC 124 ms
80,176 KB
testcase_11 AC 121 ms
80,200 KB
testcase_12 AC 122 ms
79,844 KB
testcase_13 AC 123 ms
79,820 KB
testcase_14 AC 123 ms
80,460 KB
testcase_15 AC 126 ms
80,036 KB
testcase_16 AC 121 ms
80,068 KB
testcase_17 AC 127 ms
80,044 KB
testcase_18 AC 126 ms
80,136 KB
testcase_19 AC 123 ms
79,784 KB
testcase_20 AC 123 ms
80,104 KB
testcase_21 AC 124 ms
80,192 KB
testcase_22 AC 125 ms
80,108 KB
testcase_23 AC 127 ms
79,764 KB
testcase_24 AC 126 ms
80,044 KB
testcase_25 AC 123 ms
80,220 KB
testcase_26 AC 127 ms
80,192 KB
testcase_27 AC 124 ms
80,044 KB
testcase_28 AC 125 ms
80,064 KB
testcase_29 AC 123 ms
79,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *

def main():
  getcontext().prec = 100
  n = int(input())

  ret = Decimal(0)
  for _ in range(n):
    a = input()
    ret += Decimal(a)
  print("{:.10f}".format(ret))

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