g2701_2800.s2745_construct_the_longest_new_string.Solution Maven / Gradle / Ivy
package g2701_2800.s2745_construct_the_longest_new_string;
// #Medium #Math #Greedy #Brainteaser #2023_09_23_Time_1_ms_(100.00%)_Space_40.1_MB_(66.80%)
public class Solution {
public int longestString(int x, int y, int z) {
int min = Math.min(x, y);
int res = 0;
if (x == y) {
res = 2 * min + z;
} else {
res = 2 * min + 1 + z;
}
return res * 2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy