結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | Grenache |
提出日時 | 2015-11-06 21:00:22 |
言語 | Java (openjdk 23) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,216 bytes |
コンパイル時間 | 4,286 ms |
コンパイル使用メモリ | 79,576 KB |
実行使用メモリ | 41,684 KB |
最終ジャッジ日時 | 2024-12-15 00:40:22 |
合計ジャッジ時間 | 9,757 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,048 KB |
testcase_01 | AC | 132 ms
41,036 KB |
testcase_02 | AC | 146 ms
41,148 KB |
testcase_03 | AC | 136 ms
41,196 KB |
testcase_04 | AC | 157 ms
41,272 KB |
testcase_05 | AC | 149 ms
41,148 KB |
testcase_06 | AC | 150 ms
41,396 KB |
testcase_07 | AC | 154 ms
41,248 KB |
testcase_08 | AC | 141 ms
41,224 KB |
testcase_09 | AC | 142 ms
41,384 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 142 ms
41,176 KB |
testcase_14 | AC | 129 ms
40,164 KB |
testcase_15 | AC | 149 ms
41,212 KB |
testcase_16 | AC | 133 ms
39,852 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 159 ms
41,328 KB |
testcase_24 | WA | - |
testcase_25 | AC | 118 ms
40,108 KB |
testcase_26 | AC | 139 ms
41,052 KB |
testcase_27 | WA | - |
testcase_28 | AC | 138 ms
41,244 KB |
testcase_29 | AC | 127 ms
40,236 KB |
ソースコード
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) || (intp < 0 && decimal < 0)) { } else if (intp >= 0 && decimal < 0) { intp--; decimal += 10000000000L; } else if (intp < 0 && decimal > 0) { intp++; decimal = 10000000000L - decimal; } System.out.printf("%d.%010d\n", intp, decimal); sc.close(); } }