-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
91 lines (77 loc) Β· 2.78 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package String.P15740;
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/String/P15740/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
String A = st.nextToken();
String B = st.nextToken();
System.out.println(Integer.parseInt(A) + Integer.parseInt(B));
boolean isAneg = false, isBneg = false;
if (A.charAt(0) == '-') {
A = A.substring(1);
isAneg = true;
}
if (B.charAt(0) == '-') {
B = B.substring(1);
isBneg = true;
}
if (A.length() > B.length()) B = fillZero(B, A.length() - B.length());
else A = fillZero(A, B.length() - A.length());
if (!isAneg && !isBneg) System.out.println(addNum(A, B));
else if (isAneg && isBneg) System.out.println("-" + addNum(A, B));
else {
int i = 0;
for (; i < A.length(); i++) {
if (A.charAt(i) > B.charAt(i)) {
if (isAneg) System.out.println("-" + subNum(A, B));
else System.out.println(subNum(A, B));
break;
}
if (A.charAt(i) < B.charAt(i)) {
if (isBneg) System.out.println("-" + subNum(B, A));
else System.out.println(subNum(B, A));
break;
}
}
if (i == A.length()) System.out.println(0);
}
}
static String fillZero(String s, int len) {
StringBuilder sb = new StringBuilder(s);
for (int i = 0; i < len; i++) sb.insert(0, 0);
return sb.toString();
}
static String addNum(String a, String b) {
StringBuilder sb = new StringBuilder();
int add = 0;
for (int i = a.length() - 1; i >= 0; i--) {
int sum = (a.charAt(i) - '0') + (b.charAt(i) - '0');
sb.insert(0, (sum + add) % 10);
add = (sum + add) / 10;
}
if (add > 0) sb.insert(0, add);
return sb.toString();
}
static String subNum(String a, String b) {
StringBuilder sb = new StringBuilder();
int borrow = 0;
for (int i = a.length() - 1; i >= 0; i--) {
int sub = (a.charAt(i) - '0') - (b.charAt(i) - '0') - borrow;
borrow = 0;
if (sub < 0) {
sub += 10;
borrow ++;
}
sb.insert(0, sub);
}
String ans = sb.toString();
int i = 0;
for (; i < ans.length(); i++) {
if (ans.charAt(i) != '0') break;
}
return ans.substring(i);
}
}