Submission #3208081


Source Code Expand

import java.io.IOException;
import java.util.NoSuchElementException;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;

import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
        try (
            BufferedReader reader = new BufferedReader(
                new InputStreamReader(System.in))) {
            final String s = reader.readLine();

            final int N = Integer.parseInt(s);

            System.out.println(12 == N ? 1 : N + 1);
        }
    }
}

Submission Info

Submission Time
Task A - 来月は何月?
User ShinjiSHIBATA
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 587 Byte
Status AC
Exec Time 69 ms
Memory 22356 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 12
Set Name Test Cases
All test_1.txt, test_10.txt, test_11.txt, test_12.txt, test_2.txt, test_3.txt, test_4.txt, test_5.txt, test_6.txt, test_7.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
test_1.txt AC 67 ms 22356 KB
test_10.txt AC 67 ms 18516 KB
test_11.txt AC 66 ms 19412 KB
test_12.txt AC 69 ms 20820 KB
test_2.txt AC 68 ms 21076 KB
test_3.txt AC 67 ms 20948 KB
test_4.txt AC 68 ms 20180 KB
test_5.txt AC 69 ms 18132 KB
test_6.txt AC 69 ms 20820 KB
test_7.txt AC 69 ms 20308 KB
test_8.txt AC 68 ms 18388 KB
test_9.txt AC 67 ms 18004 KB