結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー beetbeet
提出日時 2018-11-29 17:37:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-06-26 23:05:05
合計ジャッジ時間 5,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
80,260 KB
testcase_01 AC 118 ms
80,000 KB
testcase_02 AC 120 ms
80,000 KB
testcase_03 AC 128 ms
79,908 KB
testcase_04 AC 121 ms
79,904 KB
testcase_05 AC 124 ms
80,064 KB
testcase_06 AC 119 ms
79,912 KB
testcase_07 AC 120 ms
80,000 KB
testcase_08 AC 121 ms
79,648 KB
testcase_09 AC 147 ms
80,128 KB
testcase_10 AC 124 ms
79,900 KB
testcase_11 AC 114 ms
80,256 KB
testcase_12 AC 121 ms
79,872 KB
testcase_13 AC 115 ms
80,384 KB
testcase_14 AC 344 ms
80,000 KB
testcase_15 AC 117 ms
80,096 KB
testcase_16 AC 119 ms
80,256 KB
testcase_17 AC 113 ms
80,000 KB
testcase_18 AC 122 ms
79,872 KB
testcase_19 AC 116 ms
80,128 KB
testcase_20 AC 113 ms
79,844 KB
testcase_21 AC 114 ms
79,648 KB
testcase_22 AC 117 ms
79,872 KB
testcase_23 AC 128 ms
80,256 KB
testcase_24 AC 126 ms
80,264 KB
testcase_25 WA -
testcase_26 AC 115 ms
80,000 KB
testcase_27 AC 120 ms
80,000 KB
testcase_28 AC 113 ms
80,000 KB
testcase_29 AC 114 ms
80,172 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