結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー AEnAEn
提出日時 2022-05-19 00:54:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-09-17 05:12:12
合計ジャッジ時間 2,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,464 KB
testcase_01 AC 34 ms
52,512 KB
testcase_02 AC 34 ms
52,188 KB
testcase_03 AC 34 ms
52,064 KB
testcase_04 AC 35 ms
54,492 KB
testcase_05 AC 33 ms
52,604 KB
testcase_06 AC 33 ms
52,956 KB
testcase_07 AC 32 ms
52,556 KB
testcase_08 AC 35 ms
53,120 KB
testcase_09 AC 35 ms
53,540 KB
testcase_10 WA -
testcase_11 AC 35 ms
52,192 KB
testcase_12 AC 32 ms
52,824 KB
testcase_13 AC 33 ms
52,216 KB
testcase_14 AC 33 ms
53,152 KB
testcase_15 AC 35 ms
52,416 KB
testcase_16 AC 31 ms
53,480 KB
testcase_17 WA -
testcase_18 AC 32 ms
53,072 KB
testcase_19 AC 32 ms
53,040 KB
testcase_20 AC 30 ms
52,740 KB
testcase_21 AC 31 ms
52,208 KB
testcase_22 AC 32 ms
51,876 KB
testcase_23 AC 32 ms
53,020 KB
testcase_24 AC 32 ms
52,356 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 32 ms
52,856 KB
testcase_29 AC 33 ms
53,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
sm = 0
for i in range(N):
    s = input()
    if '.' in s:
        id = s.index('.')
        # print(int(s[:id]+s[id+1:]+'0'*(10-len(s[id+1:]))))
        sm += int(s[:id]+s[id+1:]+'0'*(10-len(s[id+1:])))
    else:
        # print(int(s+'0'*10))
        sm += int(s+'0'*10)
print(str(sm)[:-10]+'.'+str(sm)[-10:])
0