結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー htensaihtensai
提出日時 2019-12-06 10:53:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,266 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 83,936 KB
実行使用メモリ 55,340 KB
最終ジャッジ日時 2024-06-02 09:16:10
合計ジャッジ時間 7,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
43,004 KB
testcase_01 AC 137 ms
42,596 KB
testcase_02 AC 149 ms
42,644 KB
testcase_03 WA -
testcase_04 AC 151 ms
42,672 KB
testcase_05 AC 140 ms
42,800 KB
testcase_06 AC 148 ms
42,532 KB
testcase_07 AC 151 ms
42,944 KB
testcase_08 AC 155 ms
42,628 KB
testcase_09 AC 152 ms
42,972 KB
testcase_10 AC 106 ms
41,128 KB
testcase_11 AC 146 ms
42,732 KB
testcase_12 AC 141 ms
42,284 KB
testcase_13 AC 148 ms
42,300 KB
testcase_14 AC 137 ms
42,508 KB
testcase_15 AC 159 ms
42,672 KB
testcase_16 AC 131 ms
42,496 KB
testcase_17 WA -
testcase_18 AC 143 ms
43,004 KB
testcase_19 AC 135 ms
42,380 KB
testcase_20 AC 134 ms
42,492 KB
testcase_21 AC 135 ms
42,708 KB
testcase_22 AC 144 ms
42,348 KB
testcase_23 WA -
testcase_24 AC 138 ms
42,524 KB
testcase_25 AC 131 ms
42,692 KB
testcase_26 AC 126 ms
42,684 KB
testcase_27 AC 119 ms
41,368 KB
testcase_28 AC 141 ms
42,640 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 left = 0;
		long right = 0;
		for (int i = 0; i < n; i++) {
		    String str = sc.next();
		    if (str.contains(".")) {
		        String leftString = str.substring(0, str.indexOf("."));
		        left += Long.parseLong(leftString);
		        String rightString = str.substring(str.indexOf(".") + 1, str.length());
		        char[] arr = new char[10];
		        Arrays.fill(arr, '0');
		        for (int j = 0; j < rightString.length(); j++) {
		            arr[j] = rightString.charAt(j);
		        }
		        long x = Long.parseLong(new String(arr));
		        if (str.charAt(0) == '-') {
		            x *= -1;
		        }
		        right += x;
		    } else {
		        left += Long.parseLong(str);
		    }
		}
		left += right / 10000000000L;
		right %= 10000000000L;
		
		if (right < 0) {
		    if (left > 0) {
		        left--;
		        right += 10000000000L;
		    } else if (left < 0) {
		        right *= -1;
		    } else {
		        System.out.println("-0." + String.format("%010d", right * -1));
		        return;
		    }
		}
		System.out.println(left + "." + String.format("%010d", right));
   }
}

0