結果

問題 No.1458 Segment Function
ユーザー QCFiumQCFium
提出日時 2021-03-31 21:35:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 172,784 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-02 17:29:52
合計ジャッジ時間 3,252 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 5 ms
4,376 KB
testcase_09 AC 5 ms
4,380 KB
testcase_10 AC 5 ms
4,380 KB
testcase_11 AC 5 ms
4,380 KB
testcase_12 AC 6 ms
4,380 KB
testcase_13 AC 7 ms
4,376 KB
testcase_14 AC 7 ms
4,380 KB
testcase_15 AC 7 ms
4,376 KB
testcase_16 AC 7 ms
4,376 KB
testcase_17 AC 7 ms
4,380 KB
testcase_18 AC 12 ms
4,376 KB
testcase_19 AC 12 ms
4,376 KB
testcase_20 AC 11 ms
4,376 KB
testcase_21 AC 11 ms
4,376 KB
testcase_22 AC 11 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 5 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 11 ms
4,376 KB
testcase_27 AC 11 ms
4,380 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 5 ms
4,380 KB
testcase_30 AC 6 ms
4,376 KB
testcase_31 AC 7 ms
4,376 KB
testcase_32 AC 6 ms
4,376 KB
testcase_33 AC 5 ms
4,376 KB
testcase_34 AC 6 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int ri() {
	int n;
	scanf("%d", &n);
	return n;
}


int main() {
	constexpr int data[] = {6, 2, 5, 5, 4, 5, 6, 4, 7, 6};
	std::string s;
	std::cin >> s;
	int64_t n;
	std::cin >> n;
	
	if (n == 0) {
		std::cout << s << std::endl;
		return 0;
	}
	int cur = 0;
	if (s[0] == '-') cur++, s.erase(s.begin());
	for (auto i : s) cur += data[i - '0'];
	
	auto apply = [&] (int x) {
		int res = 0;
		for (int t = x; t; t /= 10) res += data[t % 10];
		return res;
	};
	
	std::map<int, int> res;
	res[cur] = 1;
	for (int i = 1; i < n; i++) {
		int next = apply(cur);
		if (res.count(next)) {
			int period = (i + 1 - res[next]);
			int left = (n - (i + 1)) % period;
			for (int j = 0; j < left; j++) cur = apply(cur);
			printf("%d\n", cur);
			return 0;
		}
		res[next] = i + 1;
		cur = next;
	}
	printf("%d\n", cur);
	
	
	return 0;
}
0