結果

問題 No.415 ぴょん
ユーザー tai96tai96
提出日時 2016-09-04 23:28:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 62,264 KB
実行使用メモリ 412,288 KB
最終ジャッジ日時 2024-11-15 20:18:13
合計ジャッジ時間 15,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 2 ms
179,232 KB
testcase_02 AC 2 ms
13,764 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 102 ms
412,288 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 3 ms
13,768 KB
testcase_11 AC 2 ms
374,564 KB
testcase_12 AC 3 ms
12,200 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 WA -
testcase_21 AC 11 ms
6,820 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 TLE -
testcase_24 WA -
testcase_25 TLE -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>

int n, d;
std::set<int> s;
int cur, cnt;

int main() {
	std::cin >> n >> d;
	
	if (d == 1)std::cout << n << std::endl;
	else if (d == n - 1)std::cout << n << std::endl;
	else {
		while (s.find(cur) == s.end()) {
			s.insert(cur);
			cur = (cur + d) % n;
			++cnt;
		}

		std::cout << cnt - 1 << std::endl;
	}

	return 0;
}
0