Game

Game
Crawling in process... Crawling failed Time Limit:500MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

Description

There is a legend in the IT City college. A student that failed to answer all questions on the game theory exam is given one more chance by his professor. The student has to play a game with the professor.

The game is played on a square field consisting of n × n cells. Initially all cells are empty. On each turn a player chooses and paint an empty cell that has no common sides with previously painted cells. Adjacent corner of painted cells is allowed. On the next turn another player does the same, then the first one and so on. The player with no cells to paint on his turn loses.

The professor have chosen the field size n and allowed the student to choose to be the first or the second player in the game. What should the student choose to win the game? Both players play optimally.

Input

The only line of the input contains one integer n (1 ≤ n ≤ 1018) — the size of the field.

Output

Output number 1, if the player making the first turn wins when both players play optimally, otherwise print number 2.

Sample Input

Input
1
Output
1
Input
2
Output
2


//填對角線上的空格。


當n爲偶數時,能填的方格個數爲偶數,n爲奇數時,能填的方格個數爲奇數。

n爲偶數時輸出2,n爲奇數時輸出1。

My  solution:

/*2016.3.12*/

#include<stdio.h>
int main()
{
	long long n,m,k;
	while(scanf("%I64d",&n)==1)
	{
		if(n%2==0)
		printf("2\n");
		else
		printf("1\n");
	}
	return 0;
 } 


發佈了144 篇原創文章 · 獲贊 10 · 訪問量 8萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章