Submission #1370727


Source Code Expand

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		ArrayList<Long> num = new ArrayList<Long>();
		ArrayList<String> param = new ArrayList<String>();

		while (sc.hasNext()) {
			if(sc.hasNextInt()){
				num.add(sc.nextLong());
			} else {
				param.add(sc.nextLine());
			}
		}
		Method(num,param);
	}

	static void Method(ArrayList<Long> num, ArrayList<String> param){
		
		if(num.get(0) == 12){
			System.out.println(1);
		}else{
			System.out.println(num.get(0)+1);
		}
	}
}

Submission Info

Submission Time
Task A - 来月は何月?
User unirita153
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 628 Byte
Status AC
Exec Time 95 ms
Memory 21844 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 93 ms 19796 KB
test_10.txt AC 94 ms 19412 KB
test_11.txt AC 94 ms 18644 KB
test_12.txt AC 92 ms 18640 KB
test_2.txt AC 94 ms 19028 KB
test_3.txt AC 93 ms 21844 KB
test_4.txt AC 94 ms 17620 KB
test_5.txt AC 93 ms 20564 KB
test_6.txt AC 95 ms 21588 KB
test_7.txt AC 94 ms 21716 KB
test_8.txt AC 94 ms 21844 KB
test_9.txt AC 93 ms 21716 KB