結果

問題 No.415 ぴょん
ユーザー めうめう🎒
提出日時 2017-02-01 18:04:08
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 820 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 79,192 KB
実行使用メモリ 343,424 KB
最終ジャッジ日時 2024-12-24 02:18:48
合計ジャッジ時間 16,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 TLE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <string.h>
#include <vector>
using namespace std;

#define ll long long
#define INF (1 << 30)
#define INFLL (1LL << 60)

#define FOR(i,a,b) for(ll i = (a);i<(b);i++)
#define REP(i,a) FOR(i,0,(a))
#define MP make_pair

int main() {
	ll n, d, ans = 0;
	cin >> n >> d;
	set<ll> used;
	ll now = 0;
	while(true){
		if(used.find(now) != used.end()) break;
		used.insert(now);

		if((n - now) % d == 0){
			ans += (n - now) / d;
			now += ((n - now) / d) * d;
		}else{
			ans += (n - now) / d + 1;
			now += ((n - now) / d + 1) * d;
		}

		now %= n;

		// cout << ":" << now << "-" << ans << endl;
	}

	cout << ans - 1 << endl;
	return 0;
}
0