結果
問題 | No.222 引き算と足し算 |
ユーザー | tenten |
提出日時 | 2020-12-28 14:33:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,350 bytes |
コンパイル時間 | 1,810 ms |
コンパイル使用メモリ | 74,952 KB |
実行使用メモリ | 54,724 KB |
最終ジャッジ日時 | 2024-10-03 04:50:34 |
合計ジャッジ時間 | 6,601 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
53,852 KB |
testcase_01 | AC | 113 ms
54,072 KB |
testcase_02 | AC | 97 ms
52,944 KB |
testcase_03 | AC | 109 ms
54,172 KB |
testcase_04 | AC | 116 ms
53,564 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 108 ms
53,752 KB |
testcase_10 | AC | 96 ms
52,988 KB |
testcase_11 | WA | - |
testcase_12 | AC | 113 ms
53,916 KB |
testcase_13 | AC | 114 ms
54,064 KB |
testcase_14 | WA | - |
testcase_15 | AC | 93 ms
52,872 KB |
testcase_16 | AC | 106 ms
53,848 KB |
testcase_17 | WA | - |
testcase_18 | AC | 104 ms
53,804 KB |
testcase_19 | AC | 96 ms
52,892 KB |
testcase_20 | WA | - |
testcase_21 | AC | 111 ms
54,064 KB |
testcase_22 | WA | - |
testcase_23 | AC | 109 ms
53,992 KB |
testcase_24 | AC | 96 ms
53,036 KB |
testcase_25 | WA | - |
testcase_26 | AC | 109 ms
53,724 KB |
testcase_27 | AC | 95 ms
52,812 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 103 ms
53,044 KB |
testcase_31 | AC | 109 ms
54,044 KB |
testcase_32 | AC | 106 ms
53,936 KB |
testcase_33 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); boolean start = true; boolean isPlus = true; int num1 = 0; int num2 = 0; for (char c : sc.next().toCharArray()) { if (c == '+') { if (isPlus) { num1 += num2; num2 = 0; } else { num1 -= num2; num2 = 0; } isPlus = false; start = true; } else if (c == '-') { if (start) { isPlus ^= true; start = false; } else { if (isPlus) { num1 += num2; num2 = 0; } else { num1 -= num2; num2 = 0; } isPlus = true; start = true; } } else { num2 *= 10; num2 += c - '0'; start = false; } } if (isPlus) { num1 += num2; } else { num1 -= num2; } System.out.println(num1); } }