結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー lloyzlloyz
提出日時 2023-09-05 20:37:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 974 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-06-23 16:02:16
合計ジャッジ時間 2,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,872 KB
testcase_01 AC 37 ms
53,080 KB
testcase_02 AC 37 ms
53,820 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,600 KB
testcase_05 AC 37 ms
52,328 KB
testcase_06 AC 38 ms
52,336 KB
testcase_07 AC 39 ms
52,408 KB
testcase_08 AC 38 ms
53,176 KB
testcase_09 AC 39 ms
52,536 KB
testcase_10 AC 37 ms
53,124 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
52,788 KB
testcase_14 AC 37 ms
52,828 KB
testcase_15 AC 38 ms
52,900 KB
testcase_16 AC 37 ms
52,676 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 37 ms
53,044 KB
testcase_26 AC 37 ms
54,020 KB
testcase_27 AC 36 ms
52,660 KB
testcase_28 AC 36 ms
53,004 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
i, f = 0, 0
max_f = 10**10
for _ in range(n):
    a = input()
    if '.' in a:
        ai, af = a.split('.')
        ai = int(ai)
        i += ai
        p = 10 - len(af)
        af = int(af)
        if a[0] == '-':
            f -= af * pow(10, p)
            # if f < 0:
            #     if i == 0 and not minus:
            #         minus = True
            #     else:
            #         i -= 1
            #         f += max_f
        else:
            f += af * pow(10, p)
            # if f >= max_f:
            #     if i == 0 and minus:
            #         minus = False
            #     else:
            #         i += 1
            #         f -= max_f
    else:
        i += int(a)
i, f = str(i), str(f)
if i == '0' and f[0] == '-':
    i = '-' + i
    f = f[1:]
elif len(f) > 10 or f[0] == '-':
    q, f = divmod(int(f), max_f)
    i = str(int(i) + q)
    f = str(f)
if len(f) < 10:
    f = '0' * (10 - len(f)) + f
print(i + '.' + f)
0