結果

問題 No.222 引き算と足し算
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-16 19:57:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 691 bytes
コンパイル時間 3,634 ms
コンパイル使用メモリ 75,800 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-11-15 22:12:34
合計ジャッジ時間 8,244 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,004 KB
testcase_01 AC 106 ms
40,264 KB
testcase_02 AC 121 ms
40,608 KB
testcase_03 AC 121 ms
41,312 KB
testcase_04 AC 120 ms
41,140 KB
testcase_05 AC 120 ms
41,052 KB
testcase_06 AC 109 ms
40,140 KB
testcase_07 AC 119 ms
41,064 KB
testcase_08 AC 114 ms
41,080 KB
testcase_09 AC 117 ms
40,908 KB
testcase_10 AC 119 ms
41,376 KB
testcase_11 AC 120 ms
41,060 KB
testcase_12 AC 122 ms
41,140 KB
testcase_13 AC 123 ms
41,196 KB
testcase_14 AC 122 ms
41,196 KB
testcase_15 AC 116 ms
40,904 KB
testcase_16 AC 116 ms
41,052 KB
testcase_17 AC 120 ms
41,332 KB
testcase_18 AC 121 ms
40,888 KB
testcase_19 AC 123 ms
41,100 KB
testcase_20 AC 121 ms
41,188 KB
testcase_21 AC 121 ms
41,264 KB
testcase_22 AC 105 ms
40,228 KB
testcase_23 AC 119 ms
40,980 KB
testcase_24 AC 118 ms
41,504 KB
testcase_25 AC 119 ms
41,136 KB
testcase_26 AC 110 ms
40,076 KB
testcase_27 AC 121 ms
41,176 KB
testcase_28 AC 109 ms
40,260 KB
testcase_29 AC 108 ms
40,180 KB
testcase_30 AC 101 ms
40,292 KB
testcase_31 AC 120 ms
41,264 KB
testcase_32 AC 102 ms
40,040 KB
testcase_33 AC 115 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise89{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    String s = sc.next();

    char[] sArray = s.toCharArray();
    char op = 'a';
    boolean num = false;
    int index = 0;

    for(int i = 0; i < sArray.length; i++){
      if(num && !Character.isLetterOrDigit(sArray[i])){
        op = sArray[i];
        index = i;
      }

      num = Character.isLetterOrDigit(sArray[i]);
    }
    int firstNum = Integer.parseInt(s.substring(0, index));
    int secondNum = Integer.parseInt(s.substring(index + 1, s.length()));

    System.out.println((op == '+') ? firstNum - secondNum : firstNum + secondNum);
  }
}
0