4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[POH7]彼女に水着をプレゼント(C++)

Last updated at Posted at 2016-01-05

C++で水着の問題に取り組んでみました。
恋愛SLG: プログラミングで彼女をつくる

# include <iostream>
using namespace std;

int main(void){
 size_t billion = 1000000000;
  string str;
  getline(cin, str);
  size_t i = stoi(str), num = 1;
  for (size_t j = i; j > 0; --j)
	{
		num = num * j;
		while(num % 10 == 0){
			num = num / 10;
		}
		if(num > billion)
			num = num % (billion*10);
	}
	num = num % billion;
	cout << num << endl;
  return 0;
}

ただ下位9桁のみで計算を続けているだけだが速度は十分
SwimWear.jpg

4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?