結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | scache |
提出日時 | 2014-11-28 16:57:39 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 984 bytes |
コンパイル時間 | 3,697 ms |
コンパイル使用メモリ | 87,160 KB |
実行使用メモリ | 41,812 KB |
最終ジャッジ日時 | 2024-06-11 04:48:01 |
合計ジャッジ時間 | 8,137 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
41,276 KB |
testcase_01 | AC | 125 ms
41,200 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 135 ms
41,620 KB |
testcase_05 | AC | 133 ms
41,248 KB |
testcase_06 | AC | 140 ms
41,432 KB |
testcase_07 | AC | 131 ms
41,368 KB |
testcase_08 | AC | 139 ms
41,536 KB |
testcase_09 | AC | 148 ms
41,408 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 121 ms
41,288 KB |
testcase_14 | AC | 115 ms
41,488 KB |
testcase_15 | AC | 135 ms
41,540 KB |
testcase_16 | AC | 110 ms
41,248 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 | 108 ms
41,188 KB |
testcase_26 | AC | 125 ms
41,196 KB |
testcase_27 | WA | - |
testcase_28 | AC | 121 ms
41,128 KB |
testcase_29 | WA | - |
ソースコード
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) ; } in -= 1.0e3; fr += 1.0e13; in += fr/1.0e10; fr %= 1.0e10; System.out.println(String.format("%d.%010d", in ,Math.abs(fr))); } }