結果
問題 | No.222 引き算と足し算 |
ユーザー | crazybbb3 |
提出日時 | 2017-01-16 22:03:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 52 ms / 1,000 ms |
コード長 | 2,143 bytes |
コンパイル時間 | 1,893 ms |
コンパイル使用メモリ | 77,512 KB |
実行使用メモリ | 52,100 KB |
最終ジャッジ日時 | 2024-06-02 03:57:04 |
合計ジャッジ時間 | 4,887 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
50,196 KB |
testcase_01 | AC | 52 ms
50,512 KB |
testcase_02 | AC | 49 ms
50,560 KB |
testcase_03 | AC | 50 ms
50,348 KB |
testcase_04 | AC | 51 ms
50,812 KB |
testcase_05 | AC | 50 ms
50,276 KB |
testcase_06 | AC | 50 ms
50,380 KB |
testcase_07 | AC | 50 ms
50,308 KB |
testcase_08 | AC | 51 ms
50,460 KB |
testcase_09 | AC | 49 ms
50,608 KB |
testcase_10 | AC | 48 ms
50,312 KB |
testcase_11 | AC | 48 ms
50,560 KB |
testcase_12 | AC | 49 ms
50,300 KB |
testcase_13 | AC | 49 ms
50,456 KB |
testcase_14 | AC | 50 ms
50,648 KB |
testcase_15 | AC | 49 ms
50,396 KB |
testcase_16 | AC | 49 ms
50,532 KB |
testcase_17 | AC | 48 ms
50,424 KB |
testcase_18 | AC | 49 ms
50,068 KB |
testcase_19 | AC | 51 ms
50,532 KB |
testcase_20 | AC | 49 ms
50,440 KB |
testcase_21 | AC | 51 ms
50,376 KB |
testcase_22 | AC | 50 ms
50,200 KB |
testcase_23 | AC | 49 ms
50,580 KB |
testcase_24 | AC | 49 ms
50,188 KB |
testcase_25 | AC | 49 ms
52,100 KB |
testcase_26 | AC | 48 ms
50,368 KB |
testcase_27 | AC | 48 ms
50,360 KB |
testcase_28 | AC | 48 ms
50,496 KB |
testcase_29 | AC | 48 ms
50,468 KB |
testcase_30 | AC | 49 ms
50,396 KB |
testcase_31 | AC | 48 ms
50,108 KB |
testcase_32 | AC | 48 ms
50,592 KB |
testcase_33 | AC | 50 ms
50,400 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.*; public class Main { void solve() throws IOException { String s = ns(); int n = s.length(); boolean flg = false; for (int i = 0; i < n; i++) { if (s.charAt(i) >= '0' && s.charAt(i) <= '9') { flg = true; } else if (flg) { int x = Integer.parseInt(s.substring(0, i)); int y = Integer.parseInt(s.substring(i + 1, n)); if (s.charAt(i) == '+') { out.println(x - y); } else { out.println(x + y); } return; } } } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } static BufferedReader in; static PrintWriter out; static StringTokenizer tok; public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }