結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー tentententen
提出日時 2020-11-18 17:19:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,946 bytes
コンパイル時間 2,778 ms
コンパイル使用メモリ 76,444 KB
実行使用メモリ 56,524 KB
最終ジャッジ日時 2023-09-30 15:07:20
合計ジャッジ時間 8,781 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
56,072 KB
testcase_01 AC 144 ms
56,152 KB
testcase_02 AC 146 ms
56,012 KB
testcase_03 WA -
testcase_04 AC 151 ms
56,176 KB
testcase_05 AC 148 ms
54,236 KB
testcase_06 AC 151 ms
55,932 KB
testcase_07 AC 153 ms
56,044 KB
testcase_08 AC 154 ms
55,676 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 150 ms
56,076 KB
testcase_12 AC 149 ms
55,824 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 151 ms
56,004 KB
testcase_16 AC 145 ms
56,024 KB
testcase_17 WA -
testcase_18 AC 152 ms
55,968 KB
testcase_19 AC 150 ms
55,996 KB
testcase_20 AC 148 ms
55,932 KB
testcase_21 AC 145 ms
56,084 KB
testcase_22 AC 149 ms
56,196 KB
testcase_23 WA -
testcase_24 AC 150 ms
55,940 KB
testcase_25 AC 143 ms
55,916 KB
testcase_26 AC 143 ms
56,132 KB
testcase_27 WA -
testcase_28 AC 145 ms
56,396 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long big = 0;
        long small = 0;
        for (int i = 0; i < n; i++) {
            char[] arr = sc.next().toCharArray();
            long x = 0;
            long y = 0;
            int count = 0;
            boolean isPlus = true;
            boolean hasDot = false;
            for (int j = 0; j < arr.length || (hasDot && count < 10); j++) {
                if (!hasDot && arr[j] == '-') {
                    isPlus = false;
                } else if (!hasDot && arr[j] == '.') {
                    hasDot = true;
                } else {
                    if (!hasDot) {
                        x *= 10;
                        x += arr[j] - '0';
                    } else {
                        y *= 10;
                        count++;
                        if (j < arr.length) {
                            y += arr[j] - '0';
                        }
                    }
                }
            }
            if (isPlus) {
                big += x;
                small += y;
            } else {
                big -= x;
                small -= y;
            }
        }
        if (small <= -10000000000L) {
            big += small / 10000000000L;
            small = -(-small % 10000000000L); 
        } else if (small >= 10000000000L) {
            big += small / 10000000000L;
            small %= 10000000000L;
        }
        if (small < 0) {
            if (big >= 0) {
                big--;
                small = 10000000000L + small;
            } else {
                small = -small;
            }
        } else {
            if (big < 0) {
                big++;
                small = 10000000000L + small;
            }
        }
        System.out.print(big + ".");
        System.out.printf("%010d\n", small);
    }
}
0