結果
問題 |
No.81 すべて足すだけの簡単なお仕事です。
|
ユーザー |
![]() |
提出日時 | 2015-09-22 18:26:37 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 201 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-07-19 08:39:46 |
合計ジャッジ時間 | 2,159 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 24 |
ソースコード
# -*- coding: utf-8 -*- from decimal import * n, = map(int, raw_input().split()) total = Decimal(0.0) for i in xrange(n): c, = map(str, raw_input().split()) total += Decimal(c) print total