QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#94677#5611. Pea PatternPetroTarnavskyi#AC ✓117ms3496kbC++17947b2023-04-07 15:01:312023-04-07 15:01:35

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-04-07 15:01:35]
  • 评测
  • 测评结果:AC
  • 用时:117ms
  • 内存:3496kb
  • [2023-04-07 15:01:31]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define SZ(a) (int)a.size()
#define ALL(a) a.begin(), a.end()
#define FOR(i, a, b) for (int i = (a); i<(b); ++i)
#define RFOR(i, b, a) for (int i = (b)-1; i>=(a); --i)
#define MP make_pair
#define PB push_back
#define F first
#define S second

typedef long long LL;
typedef pair<int, int> PII;
typedef vector<int> VI;

string f(string x) {
	vector<int> cnt(10);
	for (char c : x) {
		cnt[c - '0']++;
	}
	string res;
	FOR(d, 0, 10) {
		if (cnt[d] != 0) {
			res += to_string(cnt[d]) + char(d + '0');
		}
	}
	return res;
}

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	string n, m;
	cin >> n >> m;
	int k = 1;
	while ((double)clock() / CLOCKS_PER_SEC < 0.7 && n != m) {
		k++;
		n = f(n);
	}
	if (n != m) {
		cout << "Does not appear\n";
	}
	else if (k <= 100) {
		cout << k << "\n";
	}
	else {
		cout << "I’m bored\n";
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3488kb

input:

1 3112

output:

5

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 103ms
memory: 3340kb

input:

1 3113

output:

Does not appear

result:

ok single line: 'Does not appear'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3432kb

input:

20902 101011213141516171829

output:

10

result:

ok 4 lines

Test #4:

score: 0
Accepted
time: 2ms
memory: 3340kb

input:

2 21322314

output:

12

result:

ok single line: '12'

Test #5:

score: 0
Accepted
time: 2ms
memory: 3456kb

input:

22 22

output:

1

result:

ok single line: '1'

Test #6:

score: 0
Accepted
time: 51ms
memory: 3340kb

input:

22 33

output:

Does not appear

result:

ok single line: 'Does not appear'

Test #7:

score: 0
Accepted
time: 1ms
memory: 3408kb

input:

333 33

output:

2

result:

ok single line: '2'

Test #8:

score: 0
Accepted
time: 2ms
memory: 3484kb

input:

9999 211419

output:

4

result:

ok single line: '4'

Test #9:

score: 0
Accepted
time: 116ms
memory: 3388kb

input:

333 1223

output:

Does not appear

result:

ok single line: 'Does not appear'

Test #10:

score: 0
Accepted
time: 2ms
memory: 3344kb

input:

6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10713223141516271819

output:

7

result:

ok single line: '7'

Test #11:

score: 0
Accepted
time: 1ms
memory: 3492kb

input:

6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 1208182103741258615788129

output:

2

result:

ok single line: '2'

Test #12:

score: 0
Accepted
time: 0ms
memory: 3492kb

input:

6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 20614213142516275819

output:

3

result:

ok single line: '3'

Test #13:

score: 0
Accepted
time: 0ms
memory: 3488kb

input:

6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10514213242526171819

output:

4

result:

ok single line: '4'

Test #14:

score: 0
Accepted
time: 2ms
memory: 3440kb

input:

6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10614213242516171819

output:

5

result:

ok single line: '5'

Test #15:

score: 0
Accepted
time: 0ms
memory: 3392kb

input:

6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10713213241526171819

output:

6

result:

ok single line: '6'

Test #16:

score: 0
Accepted
time: 0ms
memory: 3448kb

input:

5760796952721030527278419404639297379512004745656907470181522830868116262767424456581793673894349233 10713223141516271819

output:

6

result:

ok single line: '6'

Test #17:

score: 0
Accepted
time: 2ms
memory: 3348kb

input:

897678784374340160231039448528219712620866946899496660815136811148469916897741818868299053445426618 10713223141516271819

output:

7

result:

ok single line: '7'

Test #18:

score: 0
Accepted
time: 2ms
memory: 3420kb

input:

9875522794707419324430013746923858126255632154419782774579265023442974920822006101275880435247510060 10714213141516172819

output:

8

result:

ok single line: '8'

Test #19:

score: 0
Accepted
time: 2ms
memory: 3348kb

input:

6450693110528174834676741623815633485834476548762068362094803360834377278209448667844309615098419492 10713223141516271819

output:

7

result:

ok single line: '7'

Test #20:

score: 0
Accepted
time: 2ms
memory: 3432kb

input:

1246572628123573053789690513071002843435336323527730608568174181981461742226632907509019080661386908 13011111213364851269710879

output:

2

result:

ok single line: '2'

Test #21:

score: 0
Accepted
time: 2ms
memory: 3496kb

input:

1246572628123573053789690513071002843435336323527730608568174181981461742226632907509019080661386908 10713223141516271819

output:

5

result:

ok single line: '5'

Test #22:

score: 0
Accepted
time: 2ms
memory: 3424kb

input:

90101102103114959697118129 40912213141516171859

output:

2

result:

ok single line: '2'

Test #23:

score: 0
Accepted
time: 117ms
memory: 3384kb

input:

10714213141516172819 6029399657344115253051082941972061881465048310877211053695083920702601184950742779905215660394516864

output:

Does not appear

result:

ok single line: 'Does not appear'

Test #24:

score: 0
Accepted
time: 0ms
memory: 3348kb

input:

6029399657344115253051082941972061881465048310877211053695083920702601184950742779905215660394516864 10714213141516172819

output:

8

result:

ok single line: '8'

Test #25:

score: 0
Accepted
time: 97ms
memory: 3488kb

input:

6029399657344115253051082941972061881465048310877211053695083920702601184950742779905215660394516864 10714213141516172818

output:

Does not appear

result:

ok single line: 'Does not appear'

Test #26:

score: 0
Accepted
time: 2ms
memory: 3348kb

input:

1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 1001

output:

2

result:

ok single line: '2'

Test #27:

score: 0
Accepted
time: 76ms
memory: 3428kb

input:

1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 103112233

output:

Does not appear

result:

ok single line: 'Does not appear'

Test #28:

score: 0
Accepted
time: 114ms
memory: 3492kb

input:

1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 9

output:

Does not appear

result:

ok single line: 'Does not appear'