栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

GDUT - 专题学习4 B - Fedya and Maths

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

GDUT - 专题学习4 B - Fedya and Maths

题目

Fedya studies in a gymnasium. Fedya's maths hometask is to calculate the following expression:

(1n + 2n + 3n + 4nmod 5

for given value of n. Fedya managed to complete the task. Can you? Note that given number n can be extremely large (e.g. it can exceed any integer type of your programming language).

Input

The single line contains a single integer n (0 ≤ n ≤ 10^(10^5)). The number doesn't contain any leading zeroes.

Output

Print the value of the expression without leading zeros.

Sample 1

InputcopyOutputcopy
4
4

Sample 2

InputcopyOutputcopy
124356983594583453458888889
0

Note

Operation x mod y means taking remainder after division x by y.

Note to the first sample:

思路

一开始毫无思路,准备打表试一下,发现整除4的数结果都是4,其余的数都是0,但题目的数特别大,longlong都存不下,其实用string存就可以了,然后判断最后两位是否整除4即可,最后特判一下0、4、8。

代码
#include
#include
using namespace std;
string s;
int main()
{
	cin >> s;
	int t = s.length();
	if (t == 1)
	{
		if ((s[0] - '0') % 4 == 0)
		{
			cout << 4;
		}
		else
		{
			cout << 0;
		}
	}
	else
	{
		if ((s[t - 1] - '0' + (s[t - 2] - '0') * 10) % 4 == 0)
		{
			cout << 4;
		}
		else
		{
			cout << 0;
		}
	}
	return 0;
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/744332.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号