結果
問題 | No.222 引き算と足し算 |
ユーザー | ルッツファン |
提出日時 | 2015-11-28 04:26:22 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,497 bytes |
コンパイル時間 | 3,271 ms |
コンパイル使用メモリ | 77,696 KB |
実行使用メモリ | 48,140 KB |
最終ジャッジ日時 | 2024-11-15 22:07:24 |
合計ジャッジ時間 | 6,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
48,140 KB |
testcase_01 | WA | - |
testcase_02 | AC | 52 ms
36,436 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 51 ms
36,900 KB |
testcase_10 | AC | 51 ms
36,864 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 53 ms
36,732 KB |
testcase_16 | AC | 53 ms
36,744 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | AC | 54 ms
36,432 KB |
testcase_33 | WA | - |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class yukicoder011 { public static void main(String[] args){ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String tes = null; try { tes = br.readLine(); } catch (IOException e) { // TODO 自動生成された catch ブロック e.printStackTrace(); } String[] rew = tes.split("\\+"); if(rew.length == 2){ int a = Integer.parseInt(rew[0]); int b = Integer.parseInt(rew[1]); System.out.println(a-b); return; } if(tes.indexOf("\\-") == 1){ rew = tes.split("\\-"); int a = Integer.parseInt(rew[0]); int b = Integer.parseInt(rew[1]); System.out.println(a+b); return; }else if(tes.indexOf("\\-") == 3){ rew = tes.split("\\-"); int a = Integer.parseInt(rew[0]); int b = Integer.parseInt(rew[1]); a = -1*a; b = -1*b; System.out.println(a+b); return; }else if(tes.indexOf("\\-") == 1 && tes.substring(0, 0).equals("\\-") ){ rew = tes.split("\\-"); int a = Integer.parseInt(rew[0]); int b = Integer.parseInt(rew[1]); a = -1*a; System.out.println(a+b); return; }else{ rew = tes.split("\\-"); int a = Integer.parseInt(rew[0]); int b = Integer.parseInt(rew[1]); b = -1*b; System.out.println(a+b); return; } } }