| Task: | 2021-luvut |
| Sender: | Joo |
| Submission time: | 2020-10-04 10:11:36 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | 10 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 10 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| #4 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.30 s | 1, 2, 3, 4 | details |
| #2 | ACCEPTED | 0.60 s | 1, 2, 3, 4 | details |
| #3 | ACCEPTED | 0.56 s | 1, 2, 3, 4 | details |
| #4 | ACCEPTED | 0.58 s | 1, 2, 3, 4 | details |
| #5 | ACCEPTED | 0.59 s | 1, 2, 3, 4 | details |
| #6 | ACCEPTED | 0.58 s | 1, 2, 3, 4 | details |
| #7 | ACCEPTED | 0.60 s | 1, 2, 3, 4 | details |
| #8 | ACCEPTED | 0.60 s | 1, 2, 3, 4 | details |
| #9 | ACCEPTED | 0.60 s | 1, 2, 3, 4 | details |
| #10 | ACCEPTED | 0.60 s | 1, 2, 3, 4 | details |
| #11 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #13 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #14 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #15 | WRONG ANSWER | 0.98 s | 2, 3, 4 | details |
| #16 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #17 | WRONG ANSWER | 0.98 s | 2, 3, 4 | details |
| #18 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #19 | WRONG ANSWER | 0.99 s | 2, 3, 4 | details |
| #20 | TIME LIMIT EXCEEDED | -- | 2, 3, 4 | details |
| #21 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #22 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #23 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #24 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #25 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #26 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #27 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #28 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #29 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #30 | RUNTIME ERROR | 0.13 s | 3, 4 | details |
| #31 | RUNTIME ERROR | 0.13 s | 4 | details |
| #32 | RUNTIME ERROR | 0.13 s | 4 | details |
| #33 | RUNTIME ERROR | 0.13 s | 4 | details |
| #34 | RUNTIME ERROR | 0.13 s | 4 | details |
| #35 | RUNTIME ERROR | 0.13 s | 4 | details |
| #36 | RUNTIME ERROR | 0.13 s | 4 | details |
| #37 | RUNTIME ERROR | 0.13 s | 4 | details |
| #38 | RUNTIME ERROR | 0.13 s | 4 | details |
| #39 | RUNTIME ERROR | 0.13 s | 4 | details |
| #40 | RUNTIME ERROR | 0.13 s | 4 | details |
Code
import java.util.Scanner;
public class Luvut2021 {
private static final Scanner scanner = new Scanner(System.in);
public static void main(String[] args) {
int specialIndex = Integer.valueOf(scanner.nextLine());
int numberCount = 0;
for(int i = 0; i < 1000000; i++) {
if(String.valueOf(i).matches(".*2.*0.*2.*1.*")) {
if(++numberCount == specialIndex) {
System.out.println(i);
break;
}
}
}
}
}
Test details
Test 1
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 10 |
| correct output |
|---|
| 20214 |
| user output |
|---|
| 20214 |
Test 2
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 359 |
| correct output |
|---|
| 202661 |
| user output |
|---|
| 202661 |
Test 3
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 392 |
| correct output |
|---|
| 202819 |
| user output |
|---|
| 202819 |
Test 4
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 715 |
| correct output |
|---|
| 230721 |
| user output |
|---|
| 230721 |
Test 5
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 278 |
| correct output |
|---|
| 202219 |
| user output |
|---|
| 202219 |
Test 6
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 296 |
| correct output |
|---|
| 202318 |
| user output |
|---|
| 202318 |
Test 7
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 427 |
| correct output |
|---|
| 203214 |
| user output |
|---|
| 203214 |
Test 8
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 565 |
| correct output |
|---|
| 208212 |
| user output |
|---|
| 208212 |
Test 9
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 289 |
| correct output |
|---|
| 202311 |
| user output |
|---|
| 202311 |
Test 10
Group: 1, 2, 3, 4
Verdict: ACCEPTED
| input |
|---|
| 342 |
| correct output |
|---|
| 202581 |
| user output |
|---|
| 202581 |
Test 11
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 964486 |
| correct output |
|---|
| 182502018 |
| user output |
|---|
| (empty) |
Test 12
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 110979 |
| correct output |
|---|
| 20296916 |
| user output |
|---|
| (empty) |
Test 13
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 759149 |
| correct output |
|---|
| 126108721 |
| user output |
|---|
| (empty) |
Test 14
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 234934 |
| correct output |
|---|
| 25023210 |
| user output |
|---|
| (empty) |
Test 15
Group: 2, 3, 4
Verdict: WRONG ANSWER
| input |
|---|
| 610310 |
| correct output |
|---|
| 120288133 |
| user output |
|---|
| (empty) |
Test 16
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 956690 |
| correct output |
|---|
| 182027419 |
| user output |
|---|
| (empty) |
Test 17
Group: 2, 3, 4
Verdict: WRONG ANSWER
| input |
|---|
| 608459 |
| correct output |
|---|
| 120281827 |
| user output |
|---|
| (empty) |
Test 18
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 944777 |
| correct output |
|---|
| 175260251 |
| user output |
|---|
| (empty) |
Test 19
Group: 2, 3, 4
Verdict: WRONG ANSWER
| input |
|---|
| 880780 |
| correct output |
|---|
| 152270421 |
| user output |
|---|
| (empty) |
Test 20
Group: 2, 3, 4
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 418357 |
| correct output |
|---|
| 68202361 |
| user output |
|---|
| (empty) |
Test 21
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 713294506861 |
| correct output |
|---|
| 20099206371786 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "71329450686...
Test 22
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 191431126351 |
| correct output |
|---|
| 4193020274761 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "19143112635...
Test 23
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 778422318223 |
| correct output |
|---|
| 20247733120134 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "77842231822...
Test 24
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 931090767075 |
| correct output |
|---|
| 20691282041612 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "93109076707...
Test 25
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 198806129726 |
| correct output |
|---|
| 4275365802196 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "19880612972...
Test 26
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 724343399444 |
| correct output |
|---|
| 20128443204610 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "72434339944...
Test 27
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 105064053560 |
| correct output |
|---|
| 2350677231115 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "10506405356...
Test 28
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 236866700902 |
| correct output |
|---|
| 5872395029521 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "23686670090...
Test 29
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 696349488695 |
| correct output |
|---|
| 20034225603103 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "69634948869...
Test 30
Group: 3, 4
Verdict: RUNTIME ERROR
| input |
|---|
| 30929267826 |
| correct output |
|---|
| 1205256095901 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "30929267826...
Test 31
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 576379198814226780 |
| correct output |
|---|
| 4185251600926331891 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "57637919881...
Test 32
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 291698664446913099 |
| correct output |
|---|
| 2280132983584730156 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "29169866444...
Test 33
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 693146378550043345 |
| correct output |
|---|
| 5270258230724009910 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "69314637855...
Test 34
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 685982323362439932 |
| correct output |
|---|
| 5236052744416920782 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "68598232336...
Test 35
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 838865925103308874 |
| correct output |
|---|
| 6800200426815679149 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "83886592510...
Test 36
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 766426223219980635 |
| correct output |
|---|
| 6112960212822572807 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "76642622321...
Test 37
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 652970397451919317 |
| correct output |
|---|
| 4923188580186259818 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "65297039745...
Test 38
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 188458586650539464 |
| correct output |
|---|
| 1903508375720755921 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "18845858665...
Test 39
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 157646989818721527 |
| correct output |
|---|
| 1525038392797601315 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "15764698981...
Test 40
Group: 4
Verdict: RUNTIME ERROR
| input |
|---|
| 898606361978236778 |
| correct output |
|---|
| 7326676702587314407 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.lang.NumberFormatException: For input string: "89860636197...
