Submission #187011


Source Code Expand

#include<iostream>
#include<map>
#include<vector>
#include<list>
#include<algorithm>
#include<cmath>
#include<iomanip>
#include<numeric>
#include<climits>
#include<ctime>
#include<cstring>
#define REP(i,p,n) for(int i=p;i<(int)(n);i++)
#define rep(i,n) REP(i,0,n)
#define rep_split(tok,a_str,re) for(char *tok = strtok((char *)a_str.c_str(),re); tok != NULL; tok = strtok(NULL,re))
#define all(c) (c).begin(), (c).end()

using namespace std;
template<class T> inline void chmax(T& a, T b) { if(b > a) a = b; }
template<class T> inline void chmin(T& a, T b) { if(b < a) a = b; }

int main() {
	int N;
	cin >> N;
if (N == 12) {
	cout << 1 << endl;
}
else {
	cout << N + 1 << endl;
}

	return 0;
}

Submission Info

Submission Time
Task A - 来月は何月?
User pythor
Language C++11 (GCC 4.8.1)
Score 100
Code Size 727 Byte
Status AC
Exec Time 21 ms
Memory 924 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 21 ms 924 KB
test_10.txt AC 20 ms 800 KB
test_11.txt AC 21 ms 800 KB
test_12.txt AC 20 ms 796 KB
test_2.txt AC 21 ms 748 KB
test_3.txt AC 21 ms 804 KB
test_4.txt AC 21 ms 800 KB
test_5.txt AC 21 ms 800 KB
test_6.txt AC 21 ms 800 KB
test_7.txt AC 20 ms 800 KB
test_8.txt AC 21 ms 676 KB
test_9.txt AC 21 ms 800 KB