QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#97116 | #5611. Pea Pattern | Nicolas125841 | AC ✓ | 95ms | 54996kb | Java11 | 997b | 2023-04-16 15:35:16 | 2023-04-16 15:35:17 |
Judging History
answer
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String args[]) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out)));
StringTokenizer st = new StringTokenizer(br.readLine());
String a = st.nextToken();
String b = st.nextToken();
boolean done = false;
int[] cnts = new int[10];
for(int i = 1; i <= 101; i++) {
if(a.equals(b)) {
done = true;
pw.println(i);
break;
}
Arrays.fill(cnts, 0);
a.chars().forEach(c -> cnts[c-'0']++);
StringBuilder newA = new StringBuilder();
for(int j = 0; j < 10; j++) {
if(cnts[j] == 0)
continue;
newA.append(cnts[j]);
newA.append(j);
}
a = newA.toString();
}
if(!done)
pw.println("Does not appear");
pw.close();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 47ms
memory: 52496kb
input:
1 3112
output:
5
result:
ok 2 lines
Test #2:
score: 0
Accepted
time: 65ms
memory: 54756kb
input:
1 3113
output:
Does not appear
result:
ok single line: 'Does not appear'
Test #3:
score: 0
Accepted
time: 64ms
memory: 52544kb
input:
20902 101011213141516171829
output:
10
result:
ok 4 lines
Test #4:
score: 0
Accepted
time: 57ms
memory: 50816kb
input:
2 21322314
output:
12
result:
ok single line: '12'
Test #5:
score: 0
Accepted
time: 74ms
memory: 51648kb
input:
22 22
output:
1
result:
ok single line: '1'
Test #6:
score: 0
Accepted
time: 79ms
memory: 52204kb
input:
22 33
output:
Does not appear
result:
ok single line: 'Does not appear'
Test #7:
score: 0
Accepted
time: 71ms
memory: 54996kb
input:
333 33
output:
2
result:
ok single line: '2'
Test #8:
score: 0
Accepted
time: 59ms
memory: 52148kb
input:
9999 211419
output:
4
result:
ok single line: '4'
Test #9:
score: 0
Accepted
time: 95ms
memory: 50592kb
input:
333 1223
output:
Does not appear
result:
ok single line: 'Does not appear'
Test #10:
score: 0
Accepted
time: 67ms
memory: 52236kb
input:
6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10713223141516271819
output:
7
result:
ok single line: '7'
Test #11:
score: 0
Accepted
time: 53ms
memory: 52336kb
input:
6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 1208182103741258615788129
output:
2
result:
ok single line: '2'
Test #12:
score: 0
Accepted
time: 52ms
memory: 54776kb
input:
6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 20614213142516275819
output:
3
result:
ok single line: '3'
Test #13:
score: 0
Accepted
time: 70ms
memory: 52604kb
input:
6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10514213242526171819
output:
4
result:
ok single line: '4'
Test #14:
score: 0
Accepted
time: 61ms
memory: 52676kb
input:
6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10614213242516171819
output:
5
result:
ok single line: '5'
Test #15:
score: 0
Accepted
time: 52ms
memory: 50780kb
input:
6213072339984041715643598373129685095950286197476593963450583775091057772824097115773957027804820066 10713213241526171819
output:
6
result:
ok single line: '6'
Test #16:
score: 0
Accepted
time: 70ms
memory: 54204kb
input:
5760796952721030527278419404639297379512004745656907470181522830868116262767424456581793673894349233 10713223141516271819
output:
6
result:
ok single line: '6'
Test #17:
score: 0
Accepted
time: 63ms
memory: 52668kb
input:
897678784374340160231039448528219712620866946899496660815136811148469916897741818868299053445426618 10713223141516271819
output:
7
result:
ok single line: '7'
Test #18:
score: 0
Accepted
time: 58ms
memory: 52136kb
input:
9875522794707419324430013746923858126255632154419782774579265023442974920822006101275880435247510060 10714213141516172819
output:
8
result:
ok single line: '8'
Test #19:
score: 0
Accepted
time: 60ms
memory: 52396kb
input:
6450693110528174834676741623815633485834476548762068362094803360834377278209448667844309615098419492 10713223141516271819
output:
7
result:
ok single line: '7'
Test #20:
score: 0
Accepted
time: 74ms
memory: 52628kb
input:
1246572628123573053789690513071002843435336323527730608568174181981461742226632907509019080661386908 13011111213364851269710879
output:
2
result:
ok single line: '2'
Test #21:
score: 0
Accepted
time: 78ms
memory: 52176kb
input:
1246572628123573053789690513071002843435336323527730608568174181981461742226632907509019080661386908 10713223141516271819
output:
5
result:
ok single line: '5'
Test #22:
score: 0
Accepted
time: 69ms
memory: 52524kb
input:
90101102103114959697118129 40912213141516171859
output:
2
result:
ok single line: '2'
Test #23:
score: 0
Accepted
time: 56ms
memory: 52676kb
input:
10714213141516172819 6029399657344115253051082941972061881465048310877211053695083920702601184950742779905215660394516864
output:
Does not appear
result:
ok single line: 'Does not appear'
Test #24:
score: 0
Accepted
time: 56ms
memory: 52264kb
input:
6029399657344115253051082941972061881465048310877211053695083920702601184950742779905215660394516864 10714213141516172819
output:
8
result:
ok single line: '8'
Test #25:
score: 0
Accepted
time: 50ms
memory: 50512kb
input:
6029399657344115253051082941972061881465048310877211053695083920702601184950742779905215660394516864 10714213141516172818
output:
Does not appear
result:
ok single line: 'Does not appear'
Test #26:
score: 0
Accepted
time: 57ms
memory: 52340kb
input:
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 1001
output:
2
result:
ok single line: '2'
Test #27:
score: 0
Accepted
time: 49ms
memory: 52216kb
input:
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 103112233
output:
Does not appear
result:
ok single line: 'Does not appear'
Test #28:
score: 0
Accepted
time: 68ms
memory: 52488kb
input:
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 9
output:
Does not appear
result:
ok single line: 'Does not appear'