#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main()
{
int year = 0 ;
int compareYear = 2013 ;
cin >> year ;
int sibgan[10] = { 0,1,2,3,4,5,6,7,8,9 } ;
char sibez[12] = { 'A','B','C','D','E','F','G','H','J','K','L'};
int sibganIndex = 9 ;
int sibezIndex = 5 ;
int minusYear = year - compareYear ;
if( minusYear >= 0)
{
for ( int i = 0; i < minusYear ; i++ )
{
sibganIndex++ ;
sibezIndex++ ;
if ( sibganIndex > 9 )
sibganIndex = 0 ;
if ( sibezIndex > 11 )
sibezIndex = 0 ;
}
}
else
{
minusYear *= -1 ;
for ( int i = minusYear; i > 0 ; i-- )
{
sibganIndex-- ;
sibezIndex-- ;
if ( sibganIndex < 0 )
sibganIndex = 9 ;
if ( sibezIndex < 0 )
sibezIndex = 11 ;
}
}
cout << sibez[sibezIndex] << sibgan[sibganIndex] ;
//system("PAUSE");
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1672 KB |
Output is correct |
2 |
Correct |
0 ms |
1672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1672 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1672 KB |
Output is correct |
2 |
Correct |
0 ms |
1672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1672 KB |
Output is correct |
2 |
Correct |
0 ms |
1672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1672 KB |
Output is correct |
2 |
Correct |
0 ms |
1672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1672 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1672 KB |
Output is correct |
2 |
Correct |
0 ms |
1672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
1672 KB |
Output is correct |
2 |
Correct |
0 ms |
1672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1672 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
1672 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |