結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-21 17:06:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 652 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 63,732 KB
最終ジャッジ日時 2024-06-24 00:25:48
合計ジャッジ時間 2,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,912 KB
testcase_01 AC 45 ms
55,364 KB
testcase_02 AC 44 ms
55,244 KB
testcase_03 AC 46 ms
55,828 KB
testcase_04 AC 46 ms
55,884 KB
testcase_05 AC 45 ms
57,340 KB
testcase_06 AC 50 ms
62,708 KB
testcase_07 AC 49 ms
63,732 KB
testcase_08 AC 49 ms
62,100 KB
testcase_09 AC 48 ms
62,528 KB
testcase_10 WA -
testcase_11 AC 46 ms
56,104 KB
testcase_12 AC 45 ms
57,252 KB
testcase_13 AC 44 ms
57,072 KB
testcase_14 AC 45 ms
55,548 KB
testcase_15 AC 47 ms
56,860 KB
testcase_16 AC 44 ms
55,988 KB
testcase_17 WA -
testcase_18 AC 45 ms
57,060 KB
testcase_19 AC 45 ms
56,148 KB
testcase_20 AC 45 ms
56,080 KB
testcase_21 AC 46 ms
56,040 KB
testcase_22 AC 47 ms
55,572 KB
testcase_23 AC 46 ms
56,792 KB
testcase_24 AC 46 ms
56,784 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 44 ms
56,784 KB
testcase_29 AC 44 ms
56,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
ans = 0
for _ in range(N):
    
    X = list(input())[:-1]
    now = -1
    n = len(X)
    tmp = ''
    for i in range(n):
        if X[i]=='.':
            now = i
        else:
            if (X[i]=='0')&(tmp==''):
                continue
            tmp += X[i]
    if now==-1:
        X += ['0']*10
        ans += int(''.join(X))
    else:
        
        tmp += '0'*(10 - (n-1 - now))
        ans += int(tmp)

ans = list(str(ans))
print(''.join(ans[:-10]+['.']+ans[-10:]))
        
        
0