結果

問題 No.415 ぴょん
ユーザー aaaaaa
提出日時 2018-08-22 17:49:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 905 bytes
コンパイル時間 934 ms
コンパイル使用メモリ 96,016 KB
実行使用メモリ 15,056 KB
最終ジャッジ日時 2024-12-24 10:47:52
合計ジャッジ時間 22,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 3 ms
9,800 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2 ms
9,680 KB
testcase_11 AC 2 ms
10,496 KB
testcase_12 AC 7 ms
10,496 KB
testcase_13 AC 17 ms
9,800 KB
testcase_14 AC 2 ms
10,496 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 4 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 4 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 2 ms
5,248 KB
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <functional>
#include <map>
#include <iomanip>
#include <math.h> 
#include <stack>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <tuple>
#include <cctype>
#include <ctype.h>

using namespace std;

int main() {
	int i, j, k;
	long n, d;

	cin >> n >> d;

	long jyo = 0, iti = 0, tugi = 0, sum = 0, cnt = 0;
	vector<long>amari;
	amari.push_back(1);
	cnt++;

	while (true) {



		jyo = (n - amari[cnt-1]) / d;
		sum += jyo;
		//amari.push_back()

		iti = jyo * d + amari[cnt -1];

		tugi = d - (n - iti);

		bool flag = false;

		for (i = 0; i < cnt; i++) {
			if (amari[i] == tugi) {
				flag = true;
				break;
			}
		}

		if (flag == false) {
			amari.push_back(tugi);
			cnt++;
			sum++;
		}
		else {
			break;
		}

	}

	cout << sum << endl;




	getchar();
	getchar();
	return 0;
}
0