結果
問題 | No.222 引き算と足し算 |
ユーザー | YamaKasa |
提出日時 | 2018-09-01 19:14:33 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 796 bytes |
コンパイル時間 | 3,278 ms |
コンパイル使用メモリ | 77,328 KB |
実行使用メモリ | 54,360 KB |
最終ジャッジ日時 | 2024-09-19 17:28:08 |
合計ジャッジ時間 | 7,734 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
53,752 KB |
testcase_01 | AC | 119 ms
54,088 KB |
testcase_02 | AC | 119 ms
54,124 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 123 ms
53,972 KB |
testcase_10 | AC | 119 ms
54,000 KB |
testcase_11 | RE | - |
testcase_12 | AC | 122 ms
54,324 KB |
testcase_13 | AC | 121 ms
53,884 KB |
testcase_14 | RE | - |
testcase_15 | AC | 119 ms
54,032 KB |
testcase_16 | AC | 123 ms
54,096 KB |
testcase_17 | RE | - |
testcase_18 | AC | 123 ms
54,096 KB |
testcase_19 | AC | 120 ms
53,820 KB |
testcase_20 | RE | - |
testcase_21 | AC | 118 ms
53,980 KB |
testcase_22 | RE | - |
testcase_23 | WA | - |
testcase_24 | AC | 106 ms
53,008 KB |
testcase_25 | RE | - |
testcase_26 | WA | - |
testcase_27 | AC | 119 ms
54,104 KB |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | AC | 121 ms
53,800 KB |
testcase_31 | WA | - |
testcase_32 | AC | 119 ms
54,260 KB |
testcase_33 | RE | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String s = scan.next(); scan.close(); int l = s.length(); int x = 0; int y = 0; int a = 0; if(s.charAt(0) == '-') { a = 1; } char c2 = '+'; int b = 0; for(int i = a; i < l; i++) { if(s.charAt(i) == '-' || s.charAt(i) == '+') { x = Integer.parseInt(s.substring(a, i)); if(s.charAt(i+1) == '+') { b = i; c2 = s.charAt(i); y = -Integer.parseInt(s.substring(b + 2, l)); break; } b = i; c2 = s.charAt(i); y = Integer.parseInt(s.substring(b + 1, l)); break; } } if(a == 1) { x = - x; } if(c2 == '+') { System.out.println(x - y); }else { System.out.println(x + y); } } }