Submission #186838


Source Code Expand

using System;
using System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		int n=ri();
		n++;
		if(n==13)n=1;
		Console.WriteLine(n);
	}

	public Sol(){
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}

Submission Info

Submission Time
Task A - 来月は何月?
User kuuso
Language C# (Mono 2.10.8.1)
Score 100
Code Size 885 Byte
Status AC
Exec Time 230 ms
Memory 7824 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 129 ms 7748 KB
test_10.txt AC 166 ms 7692 KB
test_11.txt AC 171 ms 7824 KB
test_12.txt AC 148 ms 7688 KB
test_2.txt AC 131 ms 7696 KB
test_3.txt AC 160 ms 7696 KB
test_4.txt AC 130 ms 7688 KB
test_5.txt AC 128 ms 7696 KB
test_6.txt AC 230 ms 7692 KB
test_7.txt AC 150 ms 7692 KB
test_8.txt AC 132 ms 7684 KB
test_9.txt AC 133 ms 7696 KB