Submission #3219567


Source Code Expand

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int num = 1;
        for (int i = 0; i < n; i++) {
            if (num < k) {
                num += num;
            } else {
                num += k;
            }
        }
        System.out.println(num);
    }
}

Submission Info

Submission Time
Task B - Addition and Multiplication
User topaz13
Language Java8 (OpenJDK 1.8.0)
Score 200
Code Size 439 Byte
Status AC
Exec Time 96 ms
Memory 24020 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 2
AC × 11
Set Name Test Cases
Sample s1.txt, s2.txt
All in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
in1.txt AC 93 ms 23892 KB
in2.txt AC 94 ms 24020 KB
in3.txt AC 92 ms 21844 KB
in4.txt AC 94 ms 20688 KB
in5.txt AC 93 ms 19156 KB
in6.txt AC 95 ms 21076 KB
in7.txt AC 92 ms 19284 KB
in8.txt AC 93 ms 19924 KB
in9.txt AC 94 ms 23508 KB
s1.txt AC 96 ms 20948 KB
s2.txt AC 92 ms 19796 KB