結果
問題 | No.81 すべて足すだけの簡単なお仕事です。 |
ユーザー | htensai |
提出日時 | 2019-12-06 09:31:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,218 bytes |
コンパイル時間 | 1,943 ms |
コンパイル使用メモリ | 80,188 KB |
実行使用メモリ | 56,692 KB |
最終ジャッジ日時 | 2024-06-02 09:14:28 |
合計ジャッジ時間 | 6,935 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 139 ms
42,176 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 125 ms
42,384 KB |
testcase_06 | WA | - |
testcase_07 | AC | 137 ms
42,700 KB |
testcase_08 | AC | 137 ms
42,636 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 136 ms
42,564 KB |
testcase_12 | AC | 144 ms
42,380 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 129 ms
42,540 KB |
testcase_16 | AC | 111 ms
42,736 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 132 ms
42,556 KB |
testcase_20 | AC | 119 ms
42,420 KB |
testcase_21 | AC | 130 ms
42,136 KB |
testcase_22 | AC | 134 ms
42,276 KB |
testcase_23 | WA | - |
testcase_24 | AC | 124 ms
42,788 KB |
testcase_25 | WA | - |
testcase_26 | AC | 118 ms
42,136 KB |
testcase_27 | AC | 102 ms
41,676 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
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." + right * -1); return; } } System.out.println(left + "." + right); } }