結果
問題 | No.222 引き算と足し算 |
ユーザー | t8m8⛄️ |
提出日時 | 2015-06-05 23:01:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,878 bytes |
コンパイル時間 | 3,952 ms |
コンパイル使用メモリ | 78,452 KB |
実行使用メモリ | 54,472 KB |
最終ジャッジ日時 | 2024-11-15 21:27:32 |
合計ジャッジ時間 | 9,498 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
53,572 KB |
testcase_01 | AC | 130 ms
53,984 KB |
testcase_02 | AC | 131 ms
53,772 KB |
testcase_03 | AC | 127 ms
53,952 KB |
testcase_04 | AC | 133 ms
53,832 KB |
testcase_05 | WA | - |
testcase_06 | AC | 131 ms
53,708 KB |
testcase_07 | AC | 129 ms
53,624 KB |
testcase_08 | WA | - |
testcase_09 | AC | 134 ms
53,888 KB |
testcase_10 | AC | 124 ms
52,564 KB |
testcase_11 | WA | - |
testcase_12 | AC | 130 ms
53,784 KB |
testcase_13 | AC | 132 ms
53,920 KB |
testcase_14 | WA | - |
testcase_15 | AC | 130 ms
54,140 KB |
testcase_16 | AC | 135 ms
53,692 KB |
testcase_17 | WA | - |
testcase_18 | AC | 131 ms
53,576 KB |
testcase_19 | AC | 130 ms
53,952 KB |
testcase_20 | WA | - |
testcase_21 | AC | 130 ms
53,652 KB |
testcase_22 | WA | - |
testcase_23 | AC | 133 ms
53,988 KB |
testcase_24 | AC | 131 ms
53,764 KB |
testcase_25 | WA | - |
testcase_26 | AC | 130 ms
53,952 KB |
testcase_27 | AC | 132 ms
53,780 KB |
testcase_28 | WA | - |
testcase_29 | AC | 129 ms
53,888 KB |
testcase_30 | AC | 129 ms
53,952 KB |
testcase_31 | AC | 130 ms
53,752 KB |
testcase_32 | AC | 129 ms
53,908 KB |
testcase_33 | WA | - |
ソースコード
import java.util.*; import java.io.*; import static java.util.Arrays.*; import static java.lang.Math.*; public class No0222 { static final Scanner in = new Scanner(System.in); static final PrintWriter out = new PrintWriter(System.out,false); static void solve() { String s = in.next(); int cnt = 0; for (int i=0; i<s.length(); i++) { if (s.charAt(i) == '-' || s.charAt(i) == '+') { cnt++; } } if (cnt == 1) { int ptr = 0; int x = 0; while (s.charAt(ptr) != '-' && s.charAt(ptr) != '+') { x *= 10; x += s.charAt(ptr) - '0'; ptr++; } boolean f = s.charAt(ptr) == '+'; int y = 0; while (++ptr < s.length()) { y *= 10; y += s.charAt(ptr) - '0'; } out.println(f?(x-y):(x+y)); } if (cnt == 2 && '0' <= s.charAt(0) && s.charAt(0) <= '9') { int ptr = 0; int x = 0; while (s.charAt(ptr) != '-' && s.charAt(ptr) != '+') { x *= 10; x += s.charAt(ptr) - '0'; ptr++; } boolean f = s.charAt(ptr) == '+'; boolean f2 = s.charAt(++ptr) == '+'; int y = 0; while (++ptr < s.length()) { y *= 10; y += s.charAt(ptr) - '0'; } if (!f2) y = -y; out.println(f?(x-y):(x+y)); } if (cnt == 2 && (s.charAt(0) == '+' || s.charAt(0) == '-')) { int ptr = 0; boolean f1 = s.charAt(++ptr) == '+'; int x = 0; while (s.charAt(ptr) != '-' && s.charAt(ptr) != '+') { x *= 10; x += s.charAt(ptr) - '0'; ptr++; } if (!f1) x = -x; boolean f = s.charAt(ptr) == '+'; int y = 0; while (++ptr < s.length()) { y *= 10; y += s.charAt(ptr) - '0'; } out.println(f?(x-y):(x+y)); } if (cnt == 3) { int ptr = 0; boolean f1 = s.charAt(++ptr) == '+'; int x = 0; while (s.charAt(ptr) != '-' && s.charAt(ptr) != '+') { x *= 10; x += s.charAt(ptr) - '0'; ptr++; } if (!f1) x = -x; boolean f = s.charAt(ptr) == '+'; boolean f2 = s.charAt(++ptr) == '+'; int y = 0; while (++ptr < s.length()) { y *= 10; y += s.charAt(ptr) - '0'; } if (!f2) y = -y; out.println(f?(x-y):(x+y)); } } public static void main(String[] args) { long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); //trace(end-start + "ms"); in.close(); out.close(); } static void trace(Object... o) { System.out.println(Arrays.deepToString(o));} }