結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー scachescache
提出日時 2014-11-28 17:06:53
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,026 bytes
コンパイル時間 4,671 ms
コンパイル使用メモリ 80,040 KB
実行使用メモリ 41,948 KB
最終ジャッジ日時 2024-12-15 00:28:52
合計ジャッジ時間 9,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,316 KB
testcase_01 AC 131 ms
41,544 KB
testcase_02 AC 144 ms
41,468 KB
testcase_03 AC 141 ms
41,456 KB
testcase_04 AC 149 ms
41,696 KB
testcase_05 AC 143 ms
41,064 KB
testcase_06 AC 156 ms
41,324 KB
testcase_07 AC 157 ms
41,704 KB
testcase_08 AC 155 ms
41,660 KB
testcase_09 AC 158 ms
41,672 KB
testcase_10 WA -
testcase_11 AC 143 ms
41,852 KB
testcase_12 AC 150 ms
41,396 KB
testcase_13 AC 128 ms
40,564 KB
testcase_14 AC 135 ms
41,240 KB
testcase_15 AC 155 ms
41,948 KB
testcase_16 AC 142 ms
41,332 KB
testcase_17 WA -
testcase_18 AC 157 ms
41,720 KB
testcase_19 AC 151 ms
41,272 KB
testcase_20 AC 143 ms
41,856 KB
testcase_21 WA -
testcase_22 AC 149 ms
41,584 KB
testcase_23 AC 156 ms
41,660 KB
testcase_24 AC 136 ms
40,388 KB
testcase_25 AC 127 ms
41,584 KB
testcase_26 AC 139 ms
41,192 KB
testcase_27 WA -
testcase_28 AC 116 ms
40,092 KB
testcase_29 AC 152 ms
41,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.NumberFormat;
import java.util.Scanner;

public class Main81 {
	public static void main(String[] args) {
		Main81 p = new Main81();
	}

	public Main81() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String[] a = new String[n];
		for(int i=0;i<n;i++)		
			a[i] = sc.next();
			
		solve(a);
	}

	private final int NUM_DIGITS = 10;
	public void solve(String[] a) {
		
		long in = 0;
		long fr = 0;
		NumberFormat nf = NumberFormat.getInstance();
		nf.setMinimumFractionDigits(NUM_DIGITS);
		for(int j=0;j<a.length;j++){
			String[] s = (a[j]+".0").split("\\.");
			long l = Long.parseLong(s[0]);
			long f = Long.parseLong(nf.format(Double.parseDouble("0."+s[1])).substring(2));
			
			in += l;
			fr = fr + f * (s[0].charAt(0) == '-' ? (-1) : 1) ;
		
		}
		int sign = in>=0 ? 1 : -1;
		in -= 1.0e3 * sign;
		fr += 1.0e13 * sign;
		in += (long)(fr/1.0e10);
		fr %= 1.0e10;
		System.out.println(String.format("%d.%010d", in ,Math.abs(fr)));
	}

}
0