結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー GrenacheGrenache
提出日時 2016-12-28 12:31:00
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,650 bytes
コンパイル時間 3,710 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-10-13 10:12:58
合計ジャッジ時間 8,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,496 KB
testcase_01 AC 127 ms
41,196 KB
testcase_02 AC 125 ms
41,568 KB
testcase_03 AC 119 ms
41,056 KB
testcase_04 AC 137 ms
41,488 KB
testcase_05 AC 135 ms
41,448 KB
testcase_06 AC 134 ms
41,428 KB
testcase_07 AC 133 ms
41,048 KB
testcase_08 AC 131 ms
41,168 KB
testcase_09 AC 141 ms
41,612 KB
testcase_10 AC 128 ms
41,288 KB
testcase_11 AC 118 ms
40,164 KB
testcase_12 AC 135 ms
41,392 KB
testcase_13 AC 124 ms
41,164 KB
testcase_14 AC 129 ms
41,320 KB
testcase_15 AC 135 ms
41,440 KB
testcase_16 AC 127 ms
41,412 KB
testcase_17 WA -
testcase_18 AC 139 ms
41,828 KB
testcase_19 AC 133 ms
41,444 KB
testcase_20 AC 123 ms
41,108 KB
testcase_21 AC 127 ms
41,140 KB
testcase_22 AC 130 ms
41,468 KB
testcase_23 AC 138 ms
41,644 KB
testcase_24 AC 132 ms
41,104 KB
testcase_25 AC 121 ms
41,512 KB
testcase_26 AC 129 ms
41,344 KB
testcase_27 AC 121 ms
41,248 KB
testcase_28 AC 126 ms
41,276 KB
testcase_29 AC 132 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder81 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        long decimal = 0;
        long intp = 0;
        for (int i = 0; i < n; i++) {
        	String a = sc.next();

        	int index = a.indexOf('.');
        	if (index == -1) {
        		intp += Long.parseLong(a);
        	} else {
                long sign = 1;
        		if (a.charAt(0) == '-') {
        			sign = -1;
        		}
        		intp += Long.parseLong(a.substring(0, index));
        		String tmp = a.substring(index + 1);
        		while (tmp.length() < 10) {
        			tmp += "0";
        		}
        		decimal += sign * Long.parseLong(tmp);
        	}
        }

    	intp += decimal / 10000000000L;
    	decimal %= 10000000000L;
        if ((intp >= 0 && decimal >= 0)) {
            System.out.printf("%d.%010d\n", intp, decimal);
        } else if (intp < 0 && decimal < 0) {
            System.out.printf("%d.%010d\n", intp, Math.abs(decimal));
        } else if (intp == 0 && decimal < 0) {
            System.out.printf("-%d.%010d\n", intp, Math.abs(decimal));
        } else if (intp > 0 && decimal < 0) {
        	intp--;
            decimal += 10000000000L;
            System.out.printf("%d.%010d\n", intp, decimal);
        } else if (intp < 0 && decimal > 0) {
        	intp++;
            decimal = 10000000000L - decimal;
            System.out.printf("%d.%010d\n", intp, decimal);
        } else if (intp < 0 && decimal == 0) {
            System.out.printf("%d.%010d\n", intp, decimal);
        }

        sc.close();
    }
}
0